Unverified Commit 94aab29e authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

fix flutter run in dev/manual_tests (#25817)

parent 28907c79
......@@ -4,4 +4,9 @@
import 'package:flutter/widgets.dart';
void main() => runApp(const Center(child: Text('flutter run -t xxx.dart')));
void main() => runApp(const Directionality(
textDirection: TextDirection.ltr,
child: Center(
child: Text('flutter run -t xxx.dart'),
),
));
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