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

discontinued

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';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    Widget example1 = SplashScreenView(
      navigateRoute: SecondScreen(),
      duration: 5000,
      imageSize: 130,
      imageSrc: "splashscreen_image.png",
      text: "Splash Screen",
      textType: TextType.ColorizeAnimationText,
      textStyle: TextStyle(
        fontSize: 40.0,
      ),
      colors: [
        Colors.purple,
        Colors.blue,
        Colors.yellow,
        Colors.red,
      ],
      backgroundColor: Colors.white,
    );

    return MaterialApp(
      title: 'Splash screen Demo',
      home: example1,
    );
  }
}
186
likes
140
points
181
downloads

Publisher

unverified uploader

Weekly Downloads

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

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, image, meta, path, universal_io, xml, yaml

More

Packages that depend on splash_screen_view