You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/flutter/test/material/app_bar_test.dart
+67
Original file line number
Diff line number
Diff line change
@@ -3235,6 +3235,39 @@ void main() {
3235
3235
expect(actionIconButtonSize(), 30.0);
3236
3236
});
3237
3237
3238
+
testWidgets('AppBar.iconTheme should override any IconButtonTheme present in the theme for widgets containing an iconButton - M3', (WidgetTester tester) async {
testWidgets('AppBar.actionsIconTheme should override any IconButtonTheme present in the theme - M3', (WidgetTester tester) async {
3239
3272
finalThemeData themeData =ThemeData(
3240
3273
iconButtonTheme:IconButtonThemeData(
@@ -3275,6 +3308,40 @@ void main() {
3275
3308
expect(actionIconButtonSize(), 30.0);
3276
3309
});
3277
3310
3311
+
testWidgets('AppBar.actionsIconTheme should override any IconButtonTheme present in the theme for widgets containing an iconButton - M3', (WidgetTester tester) async {
0 commit comments