35 lines
775 B
Cheetah
35 lines
775 B
Cheetah
/// Flutter code sample for {{element}}
|
|
|
|
{{description}}
|
|
|
|
{{code-dartImports}}
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
{{code-imports}}
|
|
|
|
void main() => runApp(const MyApp());
|
|
|
|
/// This is the main application widget.
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return WidgetsApp(
|
|
title: 'Flutter Code Sample',
|
|
builder: (BuildContext context, Widget? navigator) => const MyStatelessWidget(),
|
|
color: const Color(0xffffffff),
|
|
);
|
|
}
|
|
}
|
|
|
|
{{code-preamble}}
|
|
|
|
/// This is the stateless widget that the main application instantiates.
|
|
class MyStatelessWidget extends StatelessWidget {
|
|
const MyStatelessWidget({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
{{code}}
|
|
}
|