Skip to content

Commit 94aab29

Browse files
authored
fix flutter run in dev/manual_tests (flutter#25817)
1 parent 28907c7 commit 94aab29

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dev/manual_tests/lib/main.dart

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@
44

55
import 'package:flutter/widgets.dart';
66

7-
void main() => runApp(const Center(child: Text('flutter run -t xxx.dart')));
7+
void main() => runApp(const Directionality(
8+
textDirection: TextDirection.ltr,
9+
child: Center(
10+
child: Text('flutter run -t xxx.dart'),
11+
),
12+
));

0 commit comments

Comments
 (0)