Skip to content

Commit e55c723

Browse files
authored
Fix test (flutter#8536)
1 parent 8916b10 commit e55c723

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

examples/flutter_gallery/lib/demo/cupertino/cupertino_dialog_demo.dart

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ class _CupertinoDialogDemoState extends State<CupertinoDialogDemo> {
6969
new CupertinoButton(
7070
child: new Text('Alert with Title'),
7171
color: CupertinoButton.kBlue,
72+
padding: new EdgeInsets.symmetric(vertical: 16.0, horizontal: 36.0),
7273
onPressed: () {
7374
showDemoDialog<String>(
7475
context: context,

examples/flutter_gallery/test_driver/transitions_perf_test.dart

+8-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final List<String> demoTitles = <String>[
1818
'Pesto',
1919
'Shrine',
2020
'Contact profile',
21-
// Components
21+
// Material Components
2222
'Bottom navigation',
2323
'Buttons',
2424
'Cards',
@@ -46,6 +46,12 @@ final List<String> demoTitles = <String>[
4646
'Tabs',
4747
'Text fields',
4848
'Tooltips',
49+
// Cupertino Components
50+
'Activity Indicator',
51+
'Buttons',
52+
'Dialogs',
53+
'Sliders',
54+
'Switches',
4955
// Style
5056
'Colors',
5157
'Typography'
@@ -54,6 +60,7 @@ final List<String> demoTitles = <String>[
5460
// Subset of [demoTitles] that needs frameSync turned off.
5561
final List<String> unsynchedDemoTitles = <String>[
5662
'Progress indicators',
63+
'Activity Indicator',
5764
];
5865

5966
final FileSystem _fs = const LocalFileSystem();

0 commit comments

Comments
 (0)