Skip to content

Instantly share code, notes, and snippets.

@Indy9000
Created August 1, 2021 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Indy9000/e30b6baec1e8a651581c7e200cfbf216 to your computer and use it in GitHub Desktop.
Save Indy9000/e30b6baec1e8a651581c7e200cfbf216 to your computer and use it in GitHub Desktop.
flutter-mythbusting-02
class MyWidget1 extends StatelessWidget {
const MyWidget1({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
print('MyWidget1 is building');
return Container(
child: Text("Stateless Widget1", style: TextStyle(fontSize: 30)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment