Skip to content

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎e.flutter.dart

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import 'package:flutter/material.dart';
2+
3+
void main() => runApp(E());
4+
5+
class E extends StatelessWidget {
6+
@override
7+
Widget build(BuildContext context) {
8+
return MaterialApp(
9+
home: Center(
10+
child: Text(
11+
'E',
12+
textScaleFactor: 5.0,
13+
),
14+
),
15+
);
16+
}
17+
}

0 commit comments

Comments
 (0)
Please sign in to comment.