Created
May 31, 2022 16:32
-
-
Save pingbird/a93c12075be458894df9de9109c570ed to your computer and use it in GitHub Desktop.
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 characters
import 'package:flutter/material.dart'; | |
const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
theme: ThemeData.dark().copyWith( | |
scaffoldBackgroundColor: darkBlue, | |
), | |
debugShowCheckedModeBanner: false, | |
home: Scaffold( | |
body: Center( | |
child: MyWidget(), | |
), | |
), | |
); | |
} | |
} | |
class MyWidget extends StatefulWidget { | |
@override | |
State<MyWidget> createState() => _MyWidgetState(); | |
} | |
class _MyWidgetState extends State<MyWidget> { | |
var showThing = false; | |
@override | |
void initState() { | |
super.initState(); | |
Future.delayed(const Duration(seconds: 3)).then((_) { | |
setState(() { | |
showThing = true; | |
}); | |
}); | |
} | |
@override | |
Widget build(BuildContext context) { | |
if (showThing) { | |
return Text( | |
'I am animation', | |
style: Theme.of(context).textTheme.headline4, | |
); | |
} | |
return Text( | |
'Hello, World!', | |
style: Theme.of(context).textTheme.headline4, | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment