mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This fixes the snippet code output so that it includes the name of the element that it is a snippet for in the first line.
34 lines
656 B
Cheetah
34 lines
656 B
Cheetah
// Flutter code sample for {{element}}
|
|
|
|
{{description}}
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
{{code-imports}}
|
|
|
|
void main() => runApp(new MyApp());
|
|
|
|
/// This Widget is the main application widget.
|
|
class MyApp extends StatelessWidget {
|
|
static const String _title = 'Flutter Code Sample';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: _title,
|
|
home: MyStatelessWidget(),
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
{{code-preamble}}
|
|
|
|
/// This is the stateless widget that the main application instantiates.
|
|
class MyStatelessWidget extends StatelessWidget {
|
|
MyStatelessWidget({Key key}) : super(key: key);
|
|
|
|
@override
|
|
{{code}}
|
|
}
|