Add Flutter (#858)

This commit is contained in:
Anurag Roy
2020-10-25 13:56:41 +05:30
committed by GitHub
parent 93aa365911
commit a8bed96659
2 changed files with 12 additions and 1 deletions

10
f/flutter.dart Normal file
View File

@@ -0,0 +1,10 @@
import 'package:flutter/widgets.dart';
void main() {
runApp(
Text(
'Hello World',
textDirection: TextDirection.ltr,
),
);
}