flare_splash_screen 2.0.1+1 copy "flare_splash_screen: ^2.0.1+1" to clipboard
flare_splash_screen: ^2.0.1+1 copied to clipboard

outdated

Facilitator for having a Splash screen with a Flare animation until some work has been done for the initialization of the app

example/lib/main.dart

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: SplashScreen.navigate(
        name: 'intro.flr',
        next: MyHomePage(title: 'Flutter Demo Home Page'),
        until: () => Future.delayed(Duration(seconds: 5)),
        startAnimation: '1',
      ),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}
224
likes
0
pub points
91%
popularity

Publisher

verified publisherjaumard.com

Facilitator for having a Splash screen with a Flare animation until some work has been done for the initialization of the app

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flare_loading, flutter

More

Packages that depend on flare_splash_screen