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.
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