This commit is contained in:
Raatty 2018-12-09 15:07:35 +13:00 committed by GitHub
parent e23f2f375a
commit 0d69e3778d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
e.flutter.dart Normal file
View File

@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
void main() => runApp(E());
class E extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Center(
child: Text(
'E',
textScaleFactor: 5.0,
),
),
);
}
}