Created
January 17, 2020 14:13
-
-
Save manoellribeiro/23c358a2bdcc6b037857cd189490b5da to your computer and use it in GitHub Desktop.
This file contains 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 characters
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(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment