advanced_splashscreen 0.0.1 copy "advanced_splashscreen: ^0.0.1" to clipboard
advanced_splashscreen: ^0.0.1 copied to clipboard

Advanced splash screen

example/example.dart

import 'package:flutter/material.dart';
import 'package:advanced_splashscreen/advanced_splashscreen.dart';

void main(){

  runApp(MaterialApp(
    home: AdvancedSplashScreen(
      child: ExampleApp(),
      seconds: 2,
      colorList: [
        Color(0xff9bcebb),
        Color(0xff9bceff),
        Color(0xff9bcfff),
      ],
      appIcon: "images/flutter_social.png",
    ),
  ));
}

class ExampleApp extends StatefulWidget {

  @override
  _ExampleAppState createState() => _ExampleAppState();
}

class _ExampleAppState extends State<ExampleApp> {

  @override
  Widget build(BuildContext context) {

    return Scaffold(
      body: Container(
        child: Center(
          child: Text("Flutter Social by ajax8732@gmail.com"),
        ),
      ),
    );
  }
}
3
likes
25
pub points
70%
popularity

Publisher

unverified uploader

Advanced splash screen

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on advanced_splashscreen