Skip to content

Commit

Permalink
Added UI for welcome
Browse files Browse the repository at this point in the history
  • Loading branch information
anoobbava committed Jan 6, 2020
1 parent 4d9ddea commit faa64fc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';

void main() {
runApp(MaterialApp(home: MyApp()));
}

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text(
'Welcome My Dear',
style: TextStyle(fontSize: 30.0),
),
),
);
}
}

0 comments on commit faa64fc

Please sign in to comment.