diff options
author | mavlonerkinboev <mavlonbek.ibragimov007@gmail.com> | 2021-08-01 19:29:14 +0500 |
---|---|---|
committer | mavlonerkinboev <mavlonbek.ibragimov007@gmail.com> | 2021-08-01 19:29:14 +0500 |
commit | 7f5e8a0fd08bbf14dfca6eef67cc32abf79d2aa8 (patch) | |
tree | 24ef8cc2f8ca638b6aa70c3f466af638f70eab54 /lib/main.dart |
released
Diffstat (limited to 'lib/main.dart')
-rwxr-xr-x | lib/main.dart | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/main.dart b/lib/main.dart new file mode 100755 index 0000000..58ff368 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,18 @@ +import 'package:flutter/material.dart'; +import 'package:recipes/pages/homepage.dart'; + +void main() => runApp(new MyApp()); + +class MyApp extends StatelessWidget { + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return new MaterialApp( + title: 'Рецепты шашлыков', + theme: new ThemeData( + primarySwatch: Colors.amber, + ), + home: new HomePage(), + ); + } +} |