mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Add debug check for localization parent (#20787)
This commit is contained in:
parent
199422cd2d
commit
9bf8502fef
@ -109,6 +109,7 @@ class AboutListTile extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterial(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return ListTile(
|
||||
leading: icon,
|
||||
title: child ??
|
||||
@ -263,6 +264,7 @@ class AboutDialog extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final String name = applicationName ?? _defaultApplicationName(context);
|
||||
final String version = applicationVersion ?? _defaultApplicationVersion(context);
|
||||
final Widget icon = applicationIcon ?? _defaultApplicationIcon(context);
|
||||
@ -437,6 +439,7 @@ class _LicensePageState extends State<LicensePage> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final String name = widget.applicationName ?? _defaultApplicationName(context);
|
||||
final String version = widget.applicationVersion ?? _defaultApplicationVersion(context);
|
||||
final MaterialLocalizations localizations = MaterialLocalizations.of(context);
|
||||
|
@ -11,6 +11,7 @@ import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'back_button.dart';
|
||||
import 'constants.dart';
|
||||
import 'debug.dart';
|
||||
import 'flexible_space_bar.dart';
|
||||
import 'icon_button.dart';
|
||||
import 'icons.dart';
|
||||
@ -332,6 +333,7 @@ class _AppBarState extends State<AppBar> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(!widget.primary || debugCheckHasMediaQuery(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final ThemeData themeData = Theme.of(context);
|
||||
final ScaffoldState scaffold = Scaffold.of(context, nullOk: true);
|
||||
final ModalRoute<dynamic> parentRoute = ModalRoute.of(context);
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'debug.dart';
|
||||
import 'icon_button.dart';
|
||||
import 'icons.dart';
|
||||
import 'material_localizations.dart';
|
||||
@ -81,6 +82,7 @@ class BackButton extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return IconButton(
|
||||
icon: const BackButtonIcon(),
|
||||
color: color,
|
||||
|
@ -10,6 +10,7 @@ import 'package:vector_math/vector_math_64.dart' show Vector3;
|
||||
|
||||
import 'colors.dart';
|
||||
import 'constants.dart';
|
||||
import 'debug.dart';
|
||||
import 'ink_well.dart';
|
||||
import 'material.dart';
|
||||
import 'material_localizations.dart';
|
||||
@ -495,6 +496,7 @@ class _BottomNavigationBarState extends State<BottomNavigationBar> with TickerPr
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasDirectionality(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
|
||||
// Labels apply up to _bottomMargin padding. Remainder is media padding.
|
||||
final double additionalBottomPadding = math.max(MediaQuery.of(context).padding.bottom - _kBottomMargin, 0.0);
|
||||
|
@ -8,6 +8,7 @@ import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'colors.dart';
|
||||
import 'debug.dart';
|
||||
import 'material.dart';
|
||||
import 'material_localizations.dart';
|
||||
import 'scaffold.dart';
|
||||
@ -315,6 +316,7 @@ Future<T> showModalBottomSheet<T>({
|
||||
}) {
|
||||
assert(context != null);
|
||||
assert(builder != null);
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return Navigator.push(context, _ModalBottomSheetRoute<T>(
|
||||
builder: builder,
|
||||
theme: Theme.of(context, shadowThemeOnly: true),
|
||||
|
@ -1429,6 +1429,7 @@ class _RawChipState extends State<RawChip> with TickerProviderStateMixin<RawChip
|
||||
assert(debugCheckHasMaterial(context));
|
||||
assert(debugCheckHasMediaQuery(context));
|
||||
assert(debugCheckHasDirectionality(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
|
||||
final ThemeData theme = Theme.of(context);
|
||||
final ChipThemeData chipTheme = ChipTheme.of(context);
|
||||
|
@ -945,6 +945,7 @@ class _DatePickerDialogState extends State<_DatePickerDialog> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final ThemeData theme = Theme.of(context);
|
||||
final Widget picker = Flexible(
|
||||
child: SizedBox(
|
||||
|
@ -5,6 +5,7 @@
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'material.dart';
|
||||
import 'material_localizations.dart';
|
||||
|
||||
/// Asserts that the given context has a [Material] ancestor.
|
||||
///
|
||||
@ -66,3 +67,63 @@ bool debugCheckHasMaterial(BuildContext context) {
|
||||
}());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/// Asserts that the given context has a [Localizations] ancestor that contains
|
||||
/// a [MaterialLocalizations] delegate.
|
||||
///
|
||||
/// Used by many material design widgets to make sure that they are
|
||||
/// only used in contexts where they have access to localizations.
|
||||
///
|
||||
/// To call this function, use the following pattern, typically in the
|
||||
/// relevant Widget's build method:
|
||||
///
|
||||
/// ```dart
|
||||
/// assert(debugCheckHasMaterialLocalizations(context));
|
||||
/// ```
|
||||
///
|
||||
/// Does nothing if asserts are disabled. Always returns true.
|
||||
bool debugCheckHasMaterialLocalizations(BuildContext context) {
|
||||
assert(() {
|
||||
if (Localizations.of<MaterialLocalizations>(context, MaterialLocalizations) == null) {
|
||||
final StringBuffer message = StringBuffer();
|
||||
message.writeln('No MaterialLocalizations found.');
|
||||
message.writeln(
|
||||
'${context.widget.runtimeType} widgets require MaterialLocalizations '
|
||||
'to be provided by a Localizations widget ancestor.'
|
||||
);
|
||||
message.writeln(
|
||||
'Localizations are used to generate many different messages, labels,'
|
||||
'and abbreviations which are used by the material library. '
|
||||
);
|
||||
message.writeln(
|
||||
'To introduce a MaterialLocalizations, either use a '
|
||||
' MaterialApp at the root of your application to include them '
|
||||
'automatically, or add a Localization widget with a '
|
||||
'MaterialLocalizations delegate.'
|
||||
);
|
||||
message.writeln(
|
||||
'The specific widget that could not find a MaterialLocalizations ancestor was:'
|
||||
);
|
||||
message.writeln(' ${context.widget}');
|
||||
final List<Widget> ancestors = <Widget>[];
|
||||
context.visitAncestorElements((Element element) {
|
||||
ancestors.add(element.widget);
|
||||
return true;
|
||||
});
|
||||
if (ancestors.isNotEmpty) {
|
||||
message.write('The ancestors of this widget were:');
|
||||
for (Widget ancestor in ancestors)
|
||||
message.write('\n $ancestor');
|
||||
} else {
|
||||
message.writeln(
|
||||
'This widget is the root of the tree, so it has no '
|
||||
'ancestors, let alone a "Localizations" ancestor.'
|
||||
);
|
||||
}
|
||||
throw FlutterError(message.toString());
|
||||
}
|
||||
return true;
|
||||
}());
|
||||
return true;
|
||||
}
|
||||
|
@ -11,6 +11,7 @@ import 'package:flutter/widgets.dart';
|
||||
import 'button_bar.dart';
|
||||
import 'button_theme.dart';
|
||||
import 'colors.dart';
|
||||
import 'debug.dart';
|
||||
import 'ink_well.dart';
|
||||
import 'material.dart';
|
||||
import 'material_localizations.dart';
|
||||
@ -232,6 +233,7 @@ class AlertDialog extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final List<Widget> children = <Widget>[];
|
||||
String label = semanticLabel;
|
||||
|
||||
@ -490,6 +492,7 @@ class SimpleDialog extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final List<Widget> body = <Widget>[];
|
||||
String label = semanticLabel;
|
||||
|
||||
@ -596,6 +599,7 @@ Future<T> showDialog<T>({
|
||||
WidgetBuilder builder,
|
||||
}) {
|
||||
assert(child == null || builder == null);
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return showGeneralDialog(
|
||||
context: context,
|
||||
pageBuilder: (BuildContext buildContext, Animation<double> animation, Animation<double> secondaryAnimation) {
|
||||
|
@ -6,6 +6,7 @@ import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'colors.dart';
|
||||
import 'debug.dart';
|
||||
import 'list_tile.dart';
|
||||
import 'material.dart';
|
||||
import 'material_localizations.dart';
|
||||
@ -116,6 +117,7 @@ class Drawer extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
String label = semanticLabel;
|
||||
switch (defaultTargetPlatform) {
|
||||
case TargetPlatform.iOS:
|
||||
@ -431,6 +433,7 @@ class DrawerControllerState extends State<DrawerController> with SingleTickerPro
|
||||
}
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return ListTileTheme(
|
||||
style: ListTileStyle.drawer,
|
||||
child: _buildDrawer(context),
|
||||
|
@ -139,6 +139,7 @@ class _DropdownMenuState<T> extends State<_DropdownMenu<T>> {
|
||||
//
|
||||
// When the menu is dismissed we just fade the entire thing out
|
||||
// in the first 0.25s.
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final MaterialLocalizations localizations = MaterialLocalizations.of(context);
|
||||
final _DropdownRoute<T> route = widget.route;
|
||||
final double unit = 0.5 / (route.items.length + 1.5);
|
||||
@ -631,6 +632,7 @@ class _DropdownButtonState<T> extends State<DropdownButton<T>> with WidgetsBindi
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterial(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
|
||||
// The width of the button and the menu are defined by the widest
|
||||
// item and the width of the hint.
|
||||
|
@ -109,6 +109,7 @@ class _ExpandIconState extends State<ExpandIcon> with SingleTickerProviderStateM
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterial(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final MaterialLocalizations localizations = MaterialLocalizations.of(context);
|
||||
final ThemeData theme = Theme.of(context);
|
||||
final String onTapHint = widget.isExpanded ? localizations.expandedIconTapHint : localizations.collapsedIconTapHint;
|
||||
|
@ -12,6 +12,7 @@ import 'button_theme.dart';
|
||||
import 'card.dart';
|
||||
import 'data_table.dart';
|
||||
import 'data_table_source.dart';
|
||||
import 'debug.dart';
|
||||
import 'dropdown.dart';
|
||||
import 'icon_button.dart';
|
||||
import 'icons.dart';
|
||||
@ -286,6 +287,7 @@ class PaginatedDataTableState extends State<PaginatedDataTable> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// TODO(ianh): This whole build function doesn't handle RTL yet.
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final ThemeData themeData = Theme.of(context);
|
||||
final MaterialLocalizations localizations = MaterialLocalizations.of(context);
|
||||
// HEADER
|
||||
|
@ -8,6 +8,7 @@ import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'constants.dart';
|
||||
import 'debug.dart';
|
||||
import 'divider.dart';
|
||||
import 'icon_button.dart';
|
||||
import 'icons.dart';
|
||||
@ -713,6 +714,7 @@ Future<T> showMenu<T>({
|
||||
}) {
|
||||
assert(context != null);
|
||||
assert(items != null && items.isNotEmpty);
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
String label = semanticLabel;
|
||||
switch (defaultTargetPlatform) {
|
||||
case TargetPlatform.iOS:
|
||||
@ -911,6 +913,7 @@ class _PopupMenuButtonState<T> extends State<PopupMenuButton<T>> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return widget.child != null
|
||||
? InkWell(
|
||||
onTap: showButtonMenu,
|
||||
|
@ -7,6 +7,7 @@ import 'dart:math';
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:flutter/rendering.dart';
|
||||
|
||||
import 'debug.dart';
|
||||
import 'material.dart';
|
||||
import 'material_localizations.dart';
|
||||
|
||||
@ -510,6 +511,7 @@ class _ReorderableListContentState extends State<_ReorderableListContent> with T
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
// We use the layout builder to constrain the cross-axis size of dragging child widgets.
|
||||
return LayoutBuilder(builder: (BuildContext context, BoxConstraints constraints) {
|
||||
final List<Widget> wrappedChildren = <Widget>[];
|
||||
|
@ -9,6 +9,7 @@ import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'app_bar.dart';
|
||||
import 'colors.dart';
|
||||
import 'debug.dart';
|
||||
import 'input_border.dart';
|
||||
import 'input_decorator.dart';
|
||||
import 'material_localizations.dart';
|
||||
@ -389,6 +390,7 @@ class _SearchPageState<T> extends State<_SearchPage<T>> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
final ThemeData theme = widget.delegate.appBarTheme(context);
|
||||
final String searchFieldLabel = MaterialLocalizations.of(context).searchFieldLabel;
|
||||
Widget body;
|
||||
|
@ -540,6 +540,8 @@ class _TextFieldState extends State<TextField> with AutomaticKeepAliveClientMixi
|
||||
Widget build(BuildContext context) {
|
||||
super.build(context); // See AutomaticKeepAliveClientMixin.
|
||||
assert(debugCheckHasMaterial(context));
|
||||
// TODO(jonahwilliams): uncomment out this check once we have migrated tests.
|
||||
// assert(debugCheckHasMaterialLocalizations(context));
|
||||
assert(debugCheckHasDirectionality(context));
|
||||
final ThemeData themeData = Theme.of(context);
|
||||
final TextStyle style = widget.style ?? themeData.textTheme.subhead;
|
||||
|
@ -79,6 +79,7 @@ class _AccountDetails extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasDirectionality(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
|
||||
final ThemeData theme = Theme.of(context);
|
||||
final List<Widget> children = <Widget>[];
|
||||
@ -308,6 +309,7 @@ class _UserAccountsDrawerHeaderState extends State<UserAccountsDrawerHeader> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
assert(debugCheckHasMaterial(context));
|
||||
assert(debugCheckHasMaterialLocalizations(context));
|
||||
return Semantics(
|
||||
container: true,
|
||||
label: MaterialLocalizations.of(context).signedInLabel,
|
||||
|
@ -845,7 +845,13 @@ void main() {
|
||||
const MediaQueryData topPadding100 = MediaQueryData(padding: EdgeInsets.only(top: 100.0));
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -855,12 +861,18 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(appBarTop(tester), 0.0);
|
||||
expect(appBarHeight(tester), kToolbarHeight);
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -870,13 +882,19 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(appBarTop(tester), 0.0);
|
||||
expect(tester.getTopLeft(find.text('title')).dy, greaterThan(100.0));
|
||||
expect(appBarHeight(tester), kToolbarHeight + 100.0);
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -891,12 +909,18 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(appBarTop(tester), 0.0);
|
||||
expect(appBarHeight(tester), kToolbarHeight + 200.0);
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -911,12 +935,18 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(appBarTop(tester), 0.0);
|
||||
expect(appBarHeight(tester), kToolbarHeight + 100.0 + 200.0);
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -926,6 +956,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
expect(appBarTop(tester), 0.0);
|
||||
expect(tester.getTopLeft(find.text('title')).dy, lessThan(100.0));
|
||||
@ -1095,7 +1126,13 @@ void main() {
|
||||
final Key trailingKey = UniqueKey();
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.rtl,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -1109,7 +1146,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(tester.getTopLeft(find.byType(AppBar)), const Offset(0.0, 0.0));
|
||||
expect(tester.getTopLeft(find.byKey(leadingKey)), const Offset(800.0 - 56.0, 100.0));
|
||||
expect(tester.getTopLeft(find.byKey(titleKey)), const Offset(416.0, 100.0));
|
||||
@ -1124,7 +1161,13 @@ void main() {
|
||||
final Key trailingKey = UniqueKey();
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.rtl,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -1140,7 +1183,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(tester.getTopLeft(find.byType(AppBar)), const Offset(0.0, 0.0));
|
||||
expect(tester.getTopLeft(find.byKey(leadingKey)), const Offset(800.0 - 56.0, 100.0));
|
||||
expect(tester.getTopLeft(find.byKey(titleKey)), const Offset(416.0, 100.0));
|
||||
@ -1155,7 +1198,13 @@ void main() {
|
||||
final Key trailingKey = UniqueKey();
|
||||
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.rtl,
|
||||
child: MediaQuery(
|
||||
data: topPadding100,
|
||||
@ -1171,7 +1220,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
expect(tester.getRect(find.byType(AppBar)), Rect.fromLTRB(0.0, 0.0, 800.00, 100.0 + 56.0));
|
||||
expect(tester.getRect(find.byKey(leadingKey)), Rect.fromLTRB(800.0 - 56.0, 100.0, 800.0, 100.0 + 56.0));
|
||||
expect(tester.getRect(find.byKey(trailingKey)), Rect.fromLTRB(0.0, 100.0, 400.0, 100.0 + 56.0));
|
||||
|
@ -64,7 +64,9 @@ void main() {
|
||||
bool value;
|
||||
|
||||
Widget buildChip(ChipThemeData data) {
|
||||
return Directionality(
|
||||
return MaterialApp(
|
||||
locale: const Locale('en', 'us'),
|
||||
home: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: MediaQueryData.fromWindow(window),
|
||||
@ -88,7 +90,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
}
|
||||
|
||||
await tester.pumpWidget(buildChip(chipTheme));
|
||||
@ -111,7 +113,8 @@ void main() {
|
||||
);
|
||||
const bool value = false;
|
||||
Widget buildChip(ChipThemeData data) {
|
||||
return Directionality(
|
||||
return MaterialApp(
|
||||
home: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: MediaQueryData.fromWindow(window),
|
||||
@ -138,7 +141,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
}
|
||||
|
||||
await tester.pumpWidget(buildChip(chipTheme));
|
||||
|
@ -243,7 +243,13 @@ Widget buildFrame({
|
||||
EdgeInsets viewInsets = const EdgeInsets.only(bottom: 200.0),
|
||||
Widget bab,
|
||||
}) {
|
||||
return Directionality(
|
||||
return Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: textDirection,
|
||||
child: MediaQuery(
|
||||
data: MediaQueryData(viewInsets: viewInsets),
|
||||
@ -255,7 +261,7 @@ Widget buildFrame({
|
||||
body: listener,
|
||||
),
|
||||
),
|
||||
);
|
||||
));
|
||||
}
|
||||
|
||||
class _StartTopFloatingActionButtonLocation extends FloatingActionButtonLocation {
|
||||
|
@ -12,9 +12,20 @@ import '../widgets/semantics_tester.dart';
|
||||
void main() {
|
||||
testWidgets('Scaffold control test', (WidgetTester tester) async {
|
||||
final Key bodyKey = UniqueKey();
|
||||
await tester.pumpWidget(Directionality(
|
||||
Widget boilerplate(Widget child) {
|
||||
return Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Scaffold(
|
||||
child: child,
|
||||
),
|
||||
);
|
||||
}
|
||||
await tester.pumpWidget(boilerplate(Scaffold(
|
||||
appBar: AppBar(title: const Text('Title')),
|
||||
body: Container(key: bodyKey),
|
||||
),
|
||||
@ -30,9 +41,7 @@ void main() {
|
||||
RenderBox bodyBox = tester.renderObject(find.byKey(bodyKey));
|
||||
expect(bodyBox.size, equals(const Size(800.0, 544.0)));
|
||||
|
||||
await tester.pumpWidget(Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
await tester.pumpWidget(boilerplate(MediaQuery(
|
||||
data: const MediaQueryData(viewInsets: EdgeInsets.only(bottom: 100.0)),
|
||||
child: Scaffold(
|
||||
appBar: AppBar(title: const Text('Title')),
|
||||
@ -44,17 +53,14 @@ void main() {
|
||||
bodyBox = tester.renderObject(find.byKey(bodyKey));
|
||||
expect(bodyBox.size, equals(const Size(800.0, 444.0)));
|
||||
|
||||
await tester.pumpWidget(Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
await tester.pumpWidget(boilerplate(MediaQuery(
|
||||
data: const MediaQueryData(viewInsets: EdgeInsets.only(bottom: 100.0)),
|
||||
child: Scaffold(
|
||||
appBar: AppBar(title: const Text('Title')),
|
||||
body: Container(key: bodyKey),
|
||||
resizeToAvoidBottomPadding: false,
|
||||
),
|
||||
),
|
||||
));
|
||||
)));
|
||||
|
||||
bodyBox = tester.renderObject(find.byKey(bodyKey));
|
||||
expect(bodyBox.size, equals(const Size(800.0, 544.0)));
|
||||
@ -62,24 +68,34 @@ void main() {
|
||||
|
||||
testWidgets('Scaffold large bottom padding test', (WidgetTester tester) async {
|
||||
final Key bodyKey = UniqueKey();
|
||||
await tester.pumpWidget(Directionality(
|
||||
|
||||
Widget boilerplate(Widget child) {
|
||||
return Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
child: child,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
await tester.pumpWidget(boilerplate(MediaQuery(
|
||||
data: const MediaQueryData(
|
||||
viewInsets: EdgeInsets.only(bottom: 700.0),
|
||||
),
|
||||
child: Scaffold(
|
||||
body: Container(key: bodyKey),
|
||||
),
|
||||
),
|
||||
))
|
||||
));
|
||||
|
||||
final RenderBox bodyBox = tester.renderObject(find.byKey(bodyKey));
|
||||
expect(bodyBox.size, equals(const Size(800.0, 0.0)));
|
||||
|
||||
await tester.pumpWidget(Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
await tester.pumpWidget(boilerplate(MediaQuery(
|
||||
data: const MediaQueryData(
|
||||
viewInsets: EdgeInsets.only(bottom: 500.0),
|
||||
),
|
||||
@ -91,9 +107,7 @@ void main() {
|
||||
|
||||
expect(bodyBox.size, equals(const Size(800.0, 100.0)));
|
||||
|
||||
await tester.pumpWidget(Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
await tester.pumpWidget(boilerplate(MediaQuery(
|
||||
data: const MediaQueryData(
|
||||
viewInsets: EdgeInsets.only(bottom: 580.0),
|
||||
),
|
||||
@ -597,7 +611,13 @@ void main() {
|
||||
final Key insideDrawer = UniqueKey();
|
||||
final Key insideBottomNavigationBar = UniqueKey();
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.rtl,
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(
|
||||
@ -660,6 +680,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
// open drawer
|
||||
await tester.flingFrom(const Offset(795.0, 5.0), const Offset(-200.0, 0.0), 10.0);
|
||||
@ -692,7 +713,13 @@ void main() {
|
||||
final Key insidePersistentFooterButton = UniqueKey();
|
||||
final Key insideDrawer = UniqueKey();
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.rtl,
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(
|
||||
@ -748,6 +775,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
// open drawer
|
||||
await tester.flingFrom(const Offset(795.0, 5.0), const Offset(-200.0, 0.0), 10.0);
|
||||
|
@ -318,6 +318,12 @@ void main() {
|
||||
testWidgets('NestedScrollViews with custom physics', (WidgetTester tester) async {
|
||||
await tester.pumpWidget(Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'US'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
],
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(),
|
||||
child: NestedScrollView(
|
||||
@ -333,6 +339,7 @@ void main() {
|
||||
body: Container(),
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
expect(find.text('AA'), findsOneWidget);
|
||||
await tester.pump(const Duration(milliseconds: 500));
|
||||
|
@ -105,6 +105,12 @@ void main() {
|
||||
|
||||
await tester.pumpWidget(Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(),
|
||||
child: Scrollable(
|
||||
@ -127,6 +133,7 @@ void main() {
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
expect(scrollController.offset, kItemHeight / 2);
|
||||
@ -169,6 +176,12 @@ void main() {
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(),
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Scrollable(
|
||||
controller: scrollController,
|
||||
viewportBuilder: (BuildContext context, ViewportOffset offset) {
|
||||
@ -187,6 +200,7 @@ void main() {
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
expect(scrollController.offset, 2.5 * kItemHeight);
|
||||
|
@ -37,6 +37,12 @@ void _tests() {
|
||||
await tester.pumpWidget(
|
||||
Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
@ -57,6 +63,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
// AppBar is child of node with semantic scroll actions.
|
||||
@ -289,6 +296,12 @@ void _tests() {
|
||||
await tester.pumpWidget(
|
||||
Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Center(
|
||||
@ -302,6 +315,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
expect(semantics, hasSemantics(
|
||||
@ -366,6 +380,12 @@ void _tests() {
|
||||
await tester.pumpWidget(
|
||||
Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: CustomScrollView(
|
||||
@ -373,6 +393,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
expect(semantics, hasSemantics(
|
||||
@ -437,6 +458,12 @@ void _tests() {
|
||||
final ScrollController controller = ScrollController(initialScrollOffset: 280.0);
|
||||
await tester.pumpWidget(Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
@ -456,6 +483,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
expect(semantics, hasSemantics(
|
||||
@ -542,6 +570,12 @@ void _tests() {
|
||||
});
|
||||
await tester.pumpWidget(Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
@ -558,6 +592,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
expect(semantics, hasSemantics(
|
||||
@ -642,6 +677,12 @@ void _tests() {
|
||||
final ScrollController controller = ScrollController(initialScrollOffset: 280.0);
|
||||
await tester.pumpWidget(Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
@ -662,6 +703,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
expect(semantics, hasSemantics(
|
||||
@ -748,6 +790,12 @@ void _tests() {
|
||||
});
|
||||
await tester.pumpWidget(Semantics(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
@ -765,6 +813,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
expect(semantics, hasSemantics(
|
||||
@ -856,6 +905,12 @@ void _tests() {
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(),
|
||||
child: Scrollable(
|
||||
@ -892,6 +947,7 @@ void _tests() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
// 'Forward Item 0' is covered by app bar.
|
||||
|
@ -9,7 +9,13 @@ void main() {
|
||||
testWidgets('Sliver appbars - floating and pinned - second app bar stacks below', (WidgetTester tester) async {
|
||||
final ScrollController controller = ScrollController();
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
Localizations(
|
||||
locale: const Locale('en', 'us'),
|
||||
delegates: const <LocalizationsDelegate<dynamic>>[
|
||||
DefaultWidgetsLocalizations.delegate,
|
||||
DefaultMaterialLocalizations.delegate,
|
||||
],
|
||||
child: Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
child: MediaQuery(
|
||||
data: const MediaQueryData(),
|
||||
@ -33,6 +39,7 @@ void main() {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
const Offset textPositionInAppBar = Offset(16.0, 18.0);
|
||||
expect(tester.getTopLeft(find.text('A')), textPositionInAppBar);
|
||||
|
Loading…
Reference in New Issue
Block a user