Skip to content

Instantly share code, notes, and snippets.

@manofi21
Created August 30, 2019 16:17
Show Gist options
  • Save manofi21/9f76d6fa2f031d85b72fdcb542c8e4e6 to your computer and use it in GitHub Desktop.
Save manofi21/9f76d6fa2f031d85b72fdcb542c8e4e6 to your computer and use it in GitHub Desktop.
statefull environtment in dart
class MyApp extends StatefulWidget {
@override 
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@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