Unverified Commit b9cfe053 authored by Darren Austin's avatar Darren Austin Committed by GitHub

Migrate some material doc samples to null safety. (#72297)

parent 0351c74a
...@@ -9,8 +9,7 @@ import 'theme.dart'; ...@@ -9,8 +9,7 @@ import 'theme.dart';
import 'theme_data.dart'; import 'theme_data.dart';
// Examples can assume: // Examples can assume:
// // @dart = 2.9 // late String userAvatarUrl;
// String userAvatarUrl;
/// A circle that represents a user. /// A circle that represents a user.
/// ///
......
...@@ -6,9 +6,6 @@ import 'dart:ui' show Color; ...@@ -6,9 +6,6 @@ import 'dart:ui' show Color;
import 'package:flutter/painting.dart'; import 'package:flutter/painting.dart';
// Examples can assume:
// // @dart = 2.9
/// Defines a single color as well a color swatch with ten shades of the color. /// Defines a single color as well a color swatch with ten shades of the color.
/// ///
/// The color's shades are referred to by index. The greater the index, the /// The color's shades are referred to by index. The greater the index, the
...@@ -113,7 +110,7 @@ class MaterialAccentColor extends ColorSwatch<int> { ...@@ -113,7 +110,7 @@ class MaterialAccentColor extends ColorSwatch<int> {
/// using an integer for the specific color desired, as follows: /// using an integer for the specific color desired, as follows:
/// ///
/// ```dart /// ```dart
/// Color selection = Colors.green[400]; // Selects a mid-range green. /// Color selection = Colors.green[400]!; // Selects a mid-range green.
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
/// {@tool snippet} /// {@tool snippet}
......
...@@ -18,9 +18,8 @@ import 'theme.dart'; ...@@ -18,9 +18,8 @@ import 'theme.dart';
import 'theme_data.dart'; import 'theme_data.dart';
// Examples can assume: // Examples can assume:
// // @dart = 2.9
// enum Department { treasury, state } // enum Department { treasury, state }
// BuildContext context; // late BuildContext context;
const EdgeInsets _defaultInsetPadding = EdgeInsets.symmetric(horizontal: 40.0, vertical: 24.0); const EdgeInsets _defaultInsetPadding = EdgeInsets.symmetric(horizontal: 40.0, vertical: 24.0);
...@@ -706,6 +705,9 @@ class SimpleDialogOption extends StatelessWidget { ...@@ -706,6 +705,9 @@ class SimpleDialogOption extends StatelessWidget {
/// case Department.state: /// case Department.state:
/// // ... /// // ...
/// break; /// break;
/// case null:
/// // dialog dismissed
/// break;
/// } /// }
/// } /// }
/// ``` /// ```
......
...@@ -16,9 +16,6 @@ import 'navigation_rail_theme.dart'; ...@@ -16,9 +16,6 @@ import 'navigation_rail_theme.dart';
import 'theme.dart'; import 'theme.dart';
import 'theme_data.dart'; import 'theme_data.dart';
// Examples can assume:
// // @dart = 2.9
/// A material widget that is meant to be displayed at the left or right of an /// A material widget that is meant to be displayed at the left or right of an
/// app to navigate between a small number of views, typically between three and /// app to navigate between a small number of views, typically between three and
/// five. /// five.
...@@ -41,7 +38,7 @@ import 'theme_data.dart'; ...@@ -41,7 +38,7 @@ import 'theme_data.dart';
/// [https://github.com/flutter/samples/blob/master/experimental/web_dashboard/lib/src/widgets/third_party/adaptive_scaffold.dart] /// [https://github.com/flutter/samples/blob/master/experimental/web_dashboard/lib/src/widgets/third_party/adaptive_scaffold.dart]
/// for an example. /// for an example.
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// ///
/// This example shows a [NavigationRail] used within a Scaffold with 3 /// This example shows a [NavigationRail] used within a Scaffold with 3
/// [NavigationRailDestination]s. The main content is separated by a divider /// [NavigationRailDestination]s. The main content is separated by a divider
...@@ -350,12 +347,12 @@ class NavigationRail extends StatefulWidget { ...@@ -350,12 +347,12 @@ class NavigationRail extends StatefulWidget {
/// final Animation<double> animation = NavigationRail.extendedAnimation(context); /// final Animation<double> animation = NavigationRail.extendedAnimation(context);
/// return AnimatedBuilder( /// return AnimatedBuilder(
/// animation: animation, /// animation: animation,
/// builder: (BuildContext context, Widget child) { /// builder: (BuildContext context, Widget? child) {
/// // The extended fab has a shorter height than the regular fab. /// // The extended fab has a shorter height than the regular fab.
/// return Container( /// return Container(
/// height: 56, /// height: 56,
/// padding: EdgeInsets.symmetric( /// padding: EdgeInsets.symmetric(
/// vertical: lerpDouble(0, 6, animation.value), /// vertical: lerpDouble(0, 6, animation.value)!,
/// ), /// ),
/// child: animation.value == 0 /// child: animation.value == 0
/// ? FloatingActionButton( /// ? FloatingActionButton(
......
...@@ -12,7 +12,6 @@ import 'material.dart'; ...@@ -12,7 +12,6 @@ import 'material.dart';
import 'material_localizations.dart'; import 'material_localizations.dart';
// Examples can assume: // Examples can assume:
// // @dart = 2.9
// class MyDataObject { } // class MyDataObject { }
/// The callback used by [ReorderableListView] to move an item to a new /// The callback used by [ReorderableListView] to move an item to a new
...@@ -60,7 +59,7 @@ typedef ReorderCallback = void Function(int oldIndex, int newIndex); ...@@ -60,7 +59,7 @@ typedef ReorderCallback = void Function(int oldIndex, int newIndex);
/// The [onReorder] parameter is required and will be called when a child /// The [onReorder] parameter is required and will be called when a child
/// widget is dragged to a new position. /// widget is dragged to a new position.
/// ///
/// {@tool dartpad --template=stateful_widget_scaffold_no_null_safety} /// {@tool dartpad --template=stateful_widget_scaffold}
/// ///
/// ```dart /// ```dart
/// List<String> _list = List.generate(5, (i) => "${i}"); /// List<String> _list = List.generate(5, (i) => "${i}");
......
...@@ -30,12 +30,11 @@ import 'theme.dart'; ...@@ -30,12 +30,11 @@ import 'theme.dart';
import 'theme_data.dart'; import 'theme_data.dart';
// Examples can assume: // Examples can assume:
// // @dart = 2.9 // late TabController tabController;
// TabController tabController;
// void setState(VoidCallback fn) { } // void setState(VoidCallback fn) { }
// String appBarTitle; // late String appBarTitle;
// int tabCount; // late int tabCount;
// TickerProvider tickerProvider; // late TickerProvider tickerProvider;
const FloatingActionButtonLocation _kDefaultFloatingActionButtonLocation = FloatingActionButtonLocation.endFloat; const FloatingActionButtonLocation _kDefaultFloatingActionButtonLocation = FloatingActionButtonLocation.endFloat;
const FloatingActionButtonAnimator _kDefaultFloatingActionButtonAnimator = FloatingActionButtonAnimator.scaling; const FloatingActionButtonAnimator _kDefaultFloatingActionButtonAnimator = FloatingActionButtonAnimator.scaling;
...@@ -69,7 +68,7 @@ enum _ScaffoldSlot { ...@@ -69,7 +68,7 @@ enum _ScaffoldSlot {
/// [BuildContext] via [ScaffoldMessenger.of] and use the /// [BuildContext] via [ScaffoldMessenger.of] and use the
/// [ScaffoldMessengerState.showSnackBar] function. /// [ScaffoldMessengerState.showSnackBar] function.
/// ///
/// {@tool dartpad --template=stateless_widget_scaffold_center_no_null_safety} /// {@tool dartpad --template=stateless_widget_scaffold_center}
/// ///
/// Here is an example of showing a [SnackBar] when the user presses a button. /// Here is an example of showing a [SnackBar] when the user presses a button.
/// ///
...@@ -112,7 +111,7 @@ class ScaffoldMessenger extends StatefulWidget { ...@@ -112,7 +111,7 @@ class ScaffoldMessenger extends StatefulWidget {
/// The state from the closest instance of this class that encloses the given /// The state from the closest instance of this class that encloses the given
/// context. /// context.
/// ///
/// {@tool dartpad --template=stateless_widget_scaffold_center_no_null_safety} /// {@tool dartpad --template=stateless_widget_scaffold_center}
/// Typical usage of the [ScaffoldMessenger.of] function is to call it in /// Typical usage of the [ScaffoldMessenger.of] function is to call it in
/// response to a user gesture or an application state change. /// response to a user gesture or an application state change.
/// ///
...@@ -138,7 +137,7 @@ class ScaffoldMessenger extends StatefulWidget { ...@@ -138,7 +137,7 @@ class ScaffoldMessenger extends StatefulWidget {
/// function. The [MaterialApp.scaffoldMessengerKey] refers to the root /// function. The [MaterialApp.scaffoldMessengerKey] refers to the root
/// ScaffoldMessenger that is provided by default. /// ScaffoldMessenger that is provided by default.
/// ///
/// {@tool dartpad --template=freeform_no_null_safety} /// {@tool dartpad --template=freeform}
/// Sometimes [SnackBar]s are produced by code that doesn't have ready access /// Sometimes [SnackBar]s are produced by code that doesn't have ready access
/// to a valid [BuildContext]. One such example of this is when you show a /// to a valid [BuildContext]. One such example of this is when you show a
/// SnackBar from a method outside of the `build` function. In these /// SnackBar from a method outside of the `build` function. In these
...@@ -166,7 +165,7 @@ class ScaffoldMessenger extends StatefulWidget { ...@@ -166,7 +165,7 @@ class ScaffoldMessenger extends StatefulWidget {
/// _counter++; /// _counter++;
/// }); /// });
/// if (_counter % 10 == 0) { /// if (_counter % 10 == 0) {
/// _scaffoldMessengerKey.currentState.showSnackBar(const SnackBar( /// _scaffoldMessengerKey.currentState!.showSnackBar(const SnackBar(
/// content: Text('A multiple of ten!'), /// content: Text('A multiple of ten!'),
/// )); /// ));
/// } /// }
...@@ -304,7 +303,7 @@ class ScaffoldMessengerState extends State<ScaffoldMessenger> with TickerProvide ...@@ -304,7 +303,7 @@ class ScaffoldMessengerState extends State<ScaffoldMessenger> with TickerProvide
/// See [ScaffoldMessenger.of] for information about how to obtain the /// See [ScaffoldMessenger.of] for information about how to obtain the
/// [ScaffoldMessengerState]. /// [ScaffoldMessengerState].
/// ///
/// {@tool dartpad --template=stateless_widget_scaffold_center_no_null_safety} /// {@tool dartpad --template=stateless_widget_scaffold_center}
/// ///
/// Here is an example of showing a [SnackBar] when the user presses a button. /// Here is an example of showing a [SnackBar] when the user presses a button.
/// ///
...@@ -1259,7 +1258,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr ...@@ -1259,7 +1258,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr
/// [ScaffoldState] for the current [BuildContext] via [Scaffold.of] and use the /// [ScaffoldState] for the current [BuildContext] via [Scaffold.of] and use the
/// [ScaffoldState.showBottomSheet] function. /// [ScaffoldState.showBottomSheet] function.
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// This example shows a [Scaffold] with a [body] and [FloatingActionButton]. /// This example shows a [Scaffold] with a [body] and [FloatingActionButton].
/// The [body] is a [Text] placed in a [Center] in order to center the text /// The [body] is a [Text] placed in a [Center] in order to center the text
/// within the [Scaffold]. The [FloatingActionButton] is connected to a /// within the [Scaffold]. The [FloatingActionButton] is connected to a
...@@ -1288,7 +1287,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr ...@@ -1288,7 +1287,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// This example shows a [Scaffold] with a blueGrey [backgroundColor], [body] /// This example shows a [Scaffold] with a blueGrey [backgroundColor], [body]
/// and [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in /// and [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in
/// order to center the text within the [Scaffold]. The [FloatingActionButton] /// order to center the text within the [Scaffold]. The [FloatingActionButton]
...@@ -1318,7 +1317,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr ...@@ -1318,7 +1317,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// This example shows a [Scaffold] with an [AppBar], a [BottomAppBar] and a /// This example shows a [Scaffold] with an [AppBar], a [BottomAppBar] and a
/// [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in order /// [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in order
/// to center the text within the [Scaffold]. The [FloatingActionButton] is /// to center the text within the [Scaffold]. The [FloatingActionButton] is
...@@ -1560,7 +1559,7 @@ class Scaffold extends StatefulWidget { ...@@ -1560,7 +1559,7 @@ class Scaffold extends StatefulWidget {
/// ///
/// To close the drawer, use [Navigator.pop]. /// To close the drawer, use [Navigator.pop].
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// To disable the drawer edge swipe, set the /// To disable the drawer edge swipe, set the
/// [Scaffold.drawerEnableOpenDragGesture] to false. Then, use /// [Scaffold.drawerEnableOpenDragGesture] to false. Then, use
/// [ScaffoldState.openDrawer] to open the drawer and [Navigator.pop] to close /// [ScaffoldState.openDrawer] to open the drawer and [Navigator.pop] to close
...@@ -1570,7 +1569,7 @@ class Scaffold extends StatefulWidget { ...@@ -1570,7 +1569,7 @@ class Scaffold extends StatefulWidget {
/// final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>(); /// final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
/// ///
/// void _openDrawer() { /// void _openDrawer() {
/// _scaffoldKey.currentState.openDrawer(); /// _scaffoldKey.currentState!.openDrawer();
/// } /// }
/// ///
/// void _closeDrawer() { /// void _closeDrawer() {
...@@ -1623,7 +1622,7 @@ class Scaffold extends StatefulWidget { ...@@ -1623,7 +1622,7 @@ class Scaffold extends StatefulWidget {
/// ///
/// To close the drawer, use [Navigator.pop]. /// To close the drawer, use [Navigator.pop].
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// To disable the drawer edge swipe, set the /// To disable the drawer edge swipe, set the
/// [Scaffold.endDrawerEnableOpenDragGesture] to false. Then, use /// [Scaffold.endDrawerEnableOpenDragGesture] to false. Then, use
/// [ScaffoldState.openEndDrawer] to open the drawer and [Navigator.pop] to /// [ScaffoldState.openEndDrawer] to open the drawer and [Navigator.pop] to
...@@ -1633,7 +1632,7 @@ class Scaffold extends StatefulWidget { ...@@ -1633,7 +1632,7 @@ class Scaffold extends StatefulWidget {
/// final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>(); /// final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
/// ///
/// void _openEndDrawer() { /// void _openEndDrawer() {
/// _scaffoldKey.currentState.openEndDrawer(); /// _scaffoldKey.currentState!.openEndDrawer();
/// } /// }
/// ///
/// void _closeEndDrawer() { /// void _closeEndDrawer() {
...@@ -1790,7 +1789,7 @@ class Scaffold extends StatefulWidget { ...@@ -1790,7 +1789,7 @@ class Scaffold extends StatefulWidget {
/// If no instance of this class encloses the given context, will cause an /// If no instance of this class encloses the given context, will cause an
/// assert in debug mode, and throw an exception in release mode. /// assert in debug mode, and throw an exception in release mode.
/// ///
/// {@tool dartpad --template=freeform_no_null_safety} /// {@tool dartpad --template=freeform}
/// Typical usage of the [Scaffold.of] function is to call it from within the /// Typical usage of the [Scaffold.of] function is to call it from within the
/// `build` method of a child of a [Scaffold]. /// `build` method of a child of a [Scaffold].
/// ///
...@@ -1861,7 +1860,7 @@ class Scaffold extends StatefulWidget { ...@@ -1861,7 +1860,7 @@ class Scaffold extends StatefulWidget {
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
/// ///
/// {@tool dartpad --template=stateless_widget_material_no_null_safety} /// {@tool dartpad --template=stateless_widget_material}
/// When the [Scaffold] is actually created in the same `build` function, the /// When the [Scaffold] is actually created in the same `build` function, the
/// `context` argument to the `build` function can't be used to find the /// `context` argument to the `build` function can't be used to find the
/// [Scaffold] (since it's "above" the widget being returned in the widget /// [Scaffold] (since it's "above" the widget being returned in the widget
...@@ -2173,7 +2172,7 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin { ...@@ -2173,7 +2172,7 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin {
/// See [ScaffoldMessenger.of] for information about how to obtain the /// See [ScaffoldMessenger.of] for information about how to obtain the
/// [ScaffoldMessengerState]. /// [ScaffoldMessengerState].
/// ///
/// {@tool dartpad --template=stateless_widget_scaffold_center_no_null_safety} /// {@tool dartpad --template=stateless_widget_scaffold_center}
/// ///
/// Here is an example of showing a [SnackBar] when the user presses a button. /// Here is an example of showing a [SnackBar] when the user presses a button.
/// ///
...@@ -2547,7 +2546,7 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin { ...@@ -2547,7 +2546,7 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin {
/// of the app. Modal bottom sheets can be created and displayed with the /// of the app. Modal bottom sheets can be created and displayed with the
/// [showModalBottomSheet] function. /// [showModalBottomSheet] function.
/// ///
/// {@tool dartpad --template=stateless_widget_scaffold_no_null_safety} /// {@tool dartpad --template=stateless_widget_scaffold}
/// ///
/// This example demonstrates how to use `showBottomSheet` to display a /// This example demonstrates how to use `showBottomSheet` to display a
/// bottom sheet when a user taps a button. It also demonstrates how to /// bottom sheet when a user taps a button. It also demonstrates how to
......
...@@ -9,8 +9,7 @@ import 'package:flutter/widgets.dart'; ...@@ -9,8 +9,7 @@ import 'package:flutter/widgets.dart';
import 'constants.dart'; import 'constants.dart';
// Examples can assume: // Examples can assume:
// // @dart = 2.9 // late BuildContext context;
// BuildContext context;
/// Coordinates tab selection between a [TabBar] and a [TabBarView]. /// Coordinates tab selection between a [TabBar] and a [TabBarView].
/// ///
...@@ -33,7 +32,7 @@ import 'constants.dart'; ...@@ -33,7 +32,7 @@ import 'constants.dart';
/// ///
/// ```dart /// ```dart
/// class MyTabbedPage extends StatefulWidget { /// class MyTabbedPage extends StatefulWidget {
/// const MyTabbedPage({ Key key }) : super(key: key); /// const MyTabbedPage({ Key? key }) : super(key: key);
/// @override /// @override
/// _MyTabbedPageState createState() => _MyTabbedPageState(); /// _MyTabbedPageState createState() => _MyTabbedPageState();
/// } /// }
...@@ -44,7 +43,7 @@ import 'constants.dart'; ...@@ -44,7 +43,7 @@ import 'constants.dart';
/// Tab(text: 'RIGHT'), /// Tab(text: 'RIGHT'),
/// ]; /// ];
/// ///
/// TabController _tabController; /// late TabController _tabController;
/// ///
/// @override /// @override
/// void initState() { /// void initState() {
...@@ -70,7 +69,7 @@ import 'constants.dart'; ...@@ -70,7 +69,7 @@ import 'constants.dart';
/// body: TabBarView( /// body: TabBarView(
/// controller: _tabController, /// controller: _tabController,
/// children: myTabs.map((Tab tab) { /// children: myTabs.map((Tab tab) {
/// final String label = tab.text.toLowerCase(); /// final String label = tab.text!.toLowerCase();
/// return Center( /// return Center(
/// child: Text( /// child: Text(
/// 'This is the $label tab', /// 'This is the $label tab',
...@@ -85,7 +84,7 @@ import 'constants.dart'; ...@@ -85,7 +84,7 @@ import 'constants.dart';
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
/// ///
/// {@tool dartpad --template=stateless_widget_material_no_null_safety} /// {@tool dartpad --template=stateless_widget_material}
/// ///
/// This example shows how to listen to page updates in [TabBar] and [TabBarView] /// This example shows how to listen to page updates in [TabBar] and [TabBarView]
/// when using [DefaultTabController]. /// when using [DefaultTabController].
...@@ -106,7 +105,7 @@ import 'constants.dart'; ...@@ -106,7 +105,7 @@ import 'constants.dart';
/// // closest DefaultTabController. /// // closest DefaultTabController.
/// child: Builder( /// child: Builder(
/// builder: (BuildContext context) { /// builder: (BuildContext context) {
/// final TabController tabController = DefaultTabController.of(context); /// final TabController tabController = DefaultTabController.of(context)!;
/// tabController.addListener(() { /// tabController.addListener(() {
/// if (!tabController.indexIsChanging) { /// if (!tabController.indexIsChanging) {
/// // Your code goes here. /// // Your code goes here.
...@@ -123,7 +122,7 @@ import 'constants.dart'; ...@@ -123,7 +122,7 @@ import 'constants.dart';
/// children: tabs.map((Tab tab){ /// children: tabs.map((Tab tab){
/// return Center( /// return Center(
/// child: Text( /// child: Text(
/// tab.text + ' Tab', /// tab.text! + ' Tab',
/// style: Theme.of(context).textTheme.headline5, /// style: Theme.of(context).textTheme.headline5,
/// ), /// ),
/// ); /// );
...@@ -405,7 +404,7 @@ class DefaultTabController extends StatefulWidget { ...@@ -405,7 +404,7 @@ class DefaultTabController extends StatefulWidget {
/// Typical usage is as follows: /// Typical usage is as follows:
/// ///
/// ```dart /// ```dart
/// TabController controller = DefaultTabController.of(context); /// TabController controller = DefaultTabController.of(context)!;
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
static TabController? of(BuildContext context) { static TabController? of(BuildContext context) {
......
...@@ -25,9 +25,6 @@ import 'theme.dart'; ...@@ -25,9 +25,6 @@ import 'theme.dart';
export 'package:flutter/services.dart' show TextInputType, TextInputAction, TextCapitalization, SmartQuotesType, SmartDashesType; export 'package:flutter/services.dart' show TextInputType, TextInputAction, TextCapitalization, SmartQuotesType, SmartDashesType;
// Examples can assume:
// // @dart = 2.9
/// Signature for the [TextField.buildCounter] callback. /// Signature for the [TextField.buildCounter] callback.
typedef InputCounterWidgetBuilder = Widget? Function( typedef InputCounterWidgetBuilder = Widget? Function(
/// The build context for the TextField. /// The build context for the TextField.
...@@ -201,13 +198,13 @@ class _TextFieldSelectionGestureDetectorBuilder extends TextSelectionGestureDete ...@@ -201,13 +198,13 @@ class _TextFieldSelectionGestureDetectorBuilder extends TextSelectionGestureDete
/// callback. This callback is applied to the text field's current value when /// callback. This callback is applied to the text field's current value when
/// the user finishes editing. /// the user finishes editing.
/// ///
/// {@tool dartpad --template=stateful_widget_material_no_null_safety} /// {@tool dartpad --template=stateful_widget_material}
/// ///
/// This sample shows how to get a value from a TextField via the [onSubmitted] /// This sample shows how to get a value from a TextField via the [onSubmitted]
/// callback. /// callback.
/// ///
/// ```dart /// ```dart
/// TextEditingController _controller; /// late TextEditingController _controller;
/// ///
/// void initState() { /// void initState() {
/// super.initState(); /// super.initState();
...@@ -769,9 +766,9 @@ class TextField extends StatefulWidget { ...@@ -769,9 +766,9 @@ class TextField extends StatefulWidget {
/// Widget counter( /// Widget counter(
/// BuildContext context, /// BuildContext context,
/// { /// {
/// int currentLength, /// required int currentLength,
/// int maxLength, /// required int? maxLength,
/// bool isFocused, /// required bool isFocused,
/// } /// }
/// ) { /// ) {
/// return Text( /// return Text(
......
...@@ -7,9 +7,6 @@ import 'package:flutter/painting.dart'; ...@@ -7,9 +7,6 @@ import 'package:flutter/painting.dart';
import 'typography.dart'; import 'typography.dart';
// Examples can assume:
// // @dart = 2.9
/// Material design text theme. /// Material design text theme.
/// ///
/// Definitions for the various typographical styles found in Material Design /// Definitions for the various typographical styles found in Material Design
...@@ -356,7 +353,7 @@ class TextTheme with Diagnosticable { ...@@ -356,7 +353,7 @@ class TextTheme with Diagnosticable {
/// /// A Widget that sets the ambient theme's title text color for its /// /// A Widget that sets the ambient theme's title text color for its
/// /// descendants, while leaving other ambient theme attributes alone. /// /// descendants, while leaving other ambient theme attributes alone.
/// class TitleColorThemeCopy extends StatelessWidget { /// class TitleColorThemeCopy extends StatelessWidget {
/// TitleColorThemeCopy({Key key, this.child, this.titleColor}) : super(key: key); /// TitleColorThemeCopy({Key? key, required this.child, required this.titleColor}) : super(key: key);
/// ///
/// final Color titleColor; /// final Color titleColor;
/// final Widget child; /// final Widget child;
...@@ -367,7 +364,7 @@ class TextTheme with Diagnosticable { ...@@ -367,7 +364,7 @@ class TextTheme with Diagnosticable {
/// return Theme( /// return Theme(
/// data: theme.copyWith( /// data: theme.copyWith(
/// textTheme: theme.textTheme.copyWith( /// textTheme: theme.textTheme.copyWith(
/// headline6: theme.textTheme.headline6.copyWith( /// headline6: theme.textTheme.headline6!.copyWith(
/// color: titleColor, /// color: titleColor,
/// ), /// ),
/// ), /// ),
...@@ -497,7 +494,7 @@ class TextTheme with Diagnosticable { ...@@ -497,7 +494,7 @@ class TextTheme with Diagnosticable {
/// /// A Widget that sets the ambient theme's title text color for its /// /// A Widget that sets the ambient theme's title text color for its
/// /// descendants, while leaving other ambient theme attributes alone. /// /// descendants, while leaving other ambient theme attributes alone.
/// class TitleColorTheme extends StatelessWidget { /// class TitleColorTheme extends StatelessWidget {
/// TitleColorTheme({Key key, this.child, this.titleColor}) : super(key: key); /// TitleColorTheme({Key? key, required this.child, required this.titleColor}) : super(key: key);
/// ///
/// final Color titleColor; /// final Color titleColor;
/// final Widget child; /// final Widget child;
......
...@@ -34,8 +34,7 @@ import 'time.dart'; ...@@ -34,8 +34,7 @@ import 'time.dart';
import 'time_picker_theme.dart'; import 'time_picker_theme.dart';
// Examples can assume: // Examples can assume:
// // @dart = 2.9 // late BuildContext context;
// BuildContext context;
const Duration _kDialogSizeAnimationDuration = Duration(milliseconds: 200); const Duration _kDialogSizeAnimationDuration = Duration(milliseconds: 200);
const Duration _kDialAnimateDuration = Duration(milliseconds: 200); const Duration _kDialAnimateDuration = Duration(milliseconds: 200);
...@@ -2127,7 +2126,7 @@ class _TimePickerDialogState extends State<_TimePickerDialog> { ...@@ -2127,7 +2126,7 @@ class _TimePickerDialogState extends State<_TimePickerDialog> {
/// Show a dialog with [initialTime] equal to the current time. /// Show a dialog with [initialTime] equal to the current time.
/// ///
/// ```dart /// ```dart
/// Future<TimeOfDay> selectedTime = showTimePicker( /// Future<TimeOfDay?> selectedTime = showTimePicker(
/// initialTime: TimeOfDay.now(), /// initialTime: TimeOfDay.now(),
/// context: context, /// context: context,
/// ); /// );
...@@ -2156,13 +2155,13 @@ class _TimePickerDialogState extends State<_TimePickerDialog> { ...@@ -2156,13 +2155,13 @@ class _TimePickerDialogState extends State<_TimePickerDialog> {
/// Show a dialog with the text direction overridden to be [TextDirection.rtl]. /// Show a dialog with the text direction overridden to be [TextDirection.rtl].
/// ///
/// ```dart /// ```dart
/// Future<TimeOfDay> selectedTimeRTL = showTimePicker( /// Future<TimeOfDay?> selectedTimeRTL = showTimePicker(
/// context: context, /// context: context,
/// initialTime: TimeOfDay.now(), /// initialTime: TimeOfDay.now(),
/// builder: (BuildContext context, Widget child) { /// builder: (BuildContext context, Widget? child) {
/// return Directionality( /// return Directionality(
/// textDirection: TextDirection.rtl, /// textDirection: TextDirection.rtl,
/// child: child, /// child: child!,
/// ); /// );
/// }, /// },
/// ); /// );
...@@ -2173,13 +2172,13 @@ class _TimePickerDialogState extends State<_TimePickerDialog> { ...@@ -2173,13 +2172,13 @@ class _TimePickerDialogState extends State<_TimePickerDialog> {
/// Show a dialog with time unconditionally displayed in 24 hour format. /// Show a dialog with time unconditionally displayed in 24 hour format.
/// ///
/// ```dart /// ```dart
/// Future<TimeOfDay> selectedTime24Hour = showTimePicker( /// Future<TimeOfDay?> selectedTime24Hour = showTimePicker(
/// context: context, /// context: context,
/// initialTime: TimeOfDay(hour: 10, minute: 47), /// initialTime: TimeOfDay(hour: 10, minute: 47),
/// builder: (BuildContext context, Widget child) { /// builder: (BuildContext context, Widget? child) {
/// return MediaQuery( /// return MediaQuery(
/// data: MediaQuery.of(context).copyWith(alwaysUse24HourFormat: true), /// data: MediaQuery.of(context).copyWith(alwaysUse24HourFormat: true),
/// child: child, /// child: child!,
/// ); /// );
/// }, /// },
/// ); /// );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment