mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
35 lines
730 B
Cheetah
35 lines
730 B
Cheetah
/// Flutter code sample for {{element}}
|
|
// @dart = 2.9
|
|
|
|
{{description}}
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
{{code-imports}}
|
|
|
|
void main() => runApp(new MyApp());
|
|
|
|
/// This is the main application widget.
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return WidgetsApp(
|
|
title: 'Flutter Code Sample',
|
|
builder: (BuildContext context, Widget navigator) {
|
|
return MyStatelessWidget();
|
|
},
|
|
color: const Color(0xffffffff),
|
|
);
|
|
}
|
|
}
|
|
|
|
{{code-preamble}}
|
|
|
|
/// This is the stateless widget that the main application instantiates.
|
|
class MyStatelessWidget extends StatelessWidget {
|
|
MyStatelessWidget({Key key}) : super(key: key);
|
|
|
|
@override
|
|
{{code}}
|
|
}
|