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

This adds a sample for InheritedNotifier, and converts a couple of other samples to be DartPad samples. I also added a new sample template stateful_widget_material_ticker, which adds a TickerProviderStateMixin to the state object so that animation controllers can be created there easily.
36 lines
742 B
Cheetah
36 lines
742 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: MyStatefulWidget(),
|
|
);
|
|
}
|
|
}
|
|
|
|
{{code-preamble}}
|
|
|
|
class MyStatefulWidget extends StatefulWidget {
|
|
MyStatefulWidget({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_MyStatefulWidgetState createState() => _MyStatefulWidgetState();
|
|
}
|
|
|
|
class _MyStatefulWidgetState extends State<MyStatefulWidget> with TickerProviderStateMixin {
|
|
{{code}}
|
|
}
|