Created
January 17, 2020 14:13
-
-
Save manoellribeiro/23c358a2bdcc6b037857cd189490b5da to your computer and use it in GitHub Desktop.
Revisions
-
manoellribeiro created this gist
Jan 17, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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(); } }