Skip to content

Instantly share code, notes, and snippets.

@manoellribeiro
Created January 17, 2020 14:13
Show Gist options
  • Save manoellribeiro/23c358a2bdcc6b037857cd189490b5da to your computer and use it in GitHub Desktop.
Save manoellribeiro/23c358a2bdcc6b037857cd189490b5da to your computer and use it in GitHub Desktop.

Revisions

  1. manoellribeiro created this gist Jan 17, 2020.
    15 changes: 15 additions & 0 deletions splashscreen.dart
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    import 'package:splashscreen/splashscreen.dart';
    import 'package:flare_flutter/flare_actor.dart';
    import 'package:flutter/material.dart';

    class SplashScreenPage extends StatefulWidget {
    @override
    _SplashScreenPageState createState() => _SplashScreenPageState();
    }

    class _SplashScreenPageState extends State<SplashScreenPage> {
    @override
    Widget build(BuildContext context) {
    return Container();
    }
    }