Unverified Commit 40e8620a authored by Mahdi K. Fard's avatar Mahdi K. Fard Committed by GitHub

Update dart preamble code. (#87557)

DataTable and Button NNBD docs fixes
parent 972bdf80
...@@ -35,7 +35,7 @@ import 'theme_data.dart'; ...@@ -35,7 +35,7 @@ import 'theme_data.dart';
/// ```dart /// ```dart
/// ElevatedButton( /// ElevatedButton(
/// style: ButtonStyle( /// style: ButtonStyle(
/// backgroundColor: MaterialStateProperty.resolveWith<Color>( /// backgroundColor: MaterialStateProperty.resolveWith<Color?>(
/// (Set<MaterialState> states) { /// (Set<MaterialState> states) {
/// if (states.contains(MaterialState.pressed)) /// if (states.contains(MaterialState.pressed))
/// return Theme.of(context).colorScheme.primary.withOpacity(0.5); /// return Theme.of(context).colorScheme.primary.withOpacity(0.5);
......
...@@ -167,7 +167,7 @@ class DataRow { ...@@ -167,7 +167,7 @@ class DataRow {
/// ///
/// ```dart /// ```dart
/// DataRow( /// DataRow(
/// color: MaterialStateProperty.resolveWith<Color>((Set<MaterialState> states) { /// color: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) {
/// if (states.contains(MaterialState.selected)) /// if (states.contains(MaterialState.selected))
/// return Theme.of(context).colorScheme.primary.withOpacity(0.08); /// return Theme.of(context).colorScheme.primary.withOpacity(0.08);
/// return null; // Use the default value. /// return null; // Use the default value.
...@@ -549,7 +549,7 @@ class DataTable extends StatelessWidget { ...@@ -549,7 +549,7 @@ class DataTable extends StatelessWidget {
/// {@template flutter.material.DataTable.dataRowColor} /// {@template flutter.material.DataTable.dataRowColor}
/// ```dart /// ```dart
/// DataTable( /// DataTable(
/// dataRowColor: MaterialStateProperty.resolveWith<Color>((Set<MaterialState> states) { /// dataRowColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) {
/// if (states.contains(MaterialState.selected)) /// if (states.contains(MaterialState.selected))
/// return Theme.of(context).colorScheme.primary.withOpacity(0.08); /// return Theme.of(context).colorScheme.primary.withOpacity(0.08);
/// return null; // Use the default value. /// return null; // Use the default value.
...@@ -597,7 +597,7 @@ class DataTable extends StatelessWidget { ...@@ -597,7 +597,7 @@ class DataTable extends StatelessWidget {
/// {@template flutter.material.DataTable.headingRowColor} /// {@template flutter.material.DataTable.headingRowColor}
/// ```dart /// ```dart
/// DataTable( /// DataTable(
/// headingRowColor: MaterialStateProperty.resolveWith<Color>((Set<MaterialState> states) { /// headingRowColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) {
/// if (states.contains(MaterialState.hovered)) /// if (states.contains(MaterialState.hovered))
/// return Theme.of(context).colorScheme.primary.withOpacity(0.08); /// return Theme.of(context).colorScheme.primary.withOpacity(0.08);
/// return null; // Use the default value. /// return null; // Use the default value.
......
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