| /// Flutter code sample for {{element}} |
| import 'package:flutter/cupertino.dart'; |
| void main() => runApp(new MyApp()); |
| /// This is the main application widget. |
| class MyApp extends StatelessWidget { |
| static const String _title = 'Flutter Code Sample'; |
| Widget build(BuildContext context) { |
| home: MyStatefulWidget(), |
| /// This is the stateful widget that the main application instantiates. |
| class MyStatefulWidget extends StatefulWidget { |
| MyStatefulWidget({Key? key}) : super(key: key); |
| _MyStatefulWidgetState createState() => _MyStatefulWidgetState(); |
| /// This is the private State class that goes with MyStatefulWidget. |
| class _MyStatefulWidgetState extends State<MyStatefulWidget> { |