splash_screen_view 2.0.0 copy "splash_screen_view: ^2.0.0" to clipboard
splash_screen_view: ^2.0.0 copied to clipboard

discontinued
outdated

This flutter lib is used as Splash Screen of your app to display logo and different text style.

example/main.dart

import 'package:flutter/material.dart';
import 'package:splash_screen_view/SplashScreenView.dart';

import 'SecondScreen.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    /// Normal Logo Splash screen
    Widget example1 = SplashScreenView(
      widget: SecondScreen(),
      duration: 3000,
      imageSize: 100,
      imageSrc: "splashscreen_image.png",
      backgroundColor: Colors.white,
    );
    return MaterialApp(
      title: 'Splash screen Demo',
      home: example1,
    );
  }
}
188
likes
0
pub points
93%
popularity

Publisher

unverified uploader

This flutter lib is used as Splash Screen of your app to display logo and different text style.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on splash_screen_view