Skip to content

Commit

Permalink
*Weather Dashboard Added
Browse files Browse the repository at this point in the history
  • Loading branch information
luckycreationsindia committed Apr 29, 2020
1 parent 7872070 commit cef0bcb
Show file tree
Hide file tree
Showing 5 changed files with 371 additions and 6 deletions.
20 changes: 14 additions & 6 deletions README.md
Expand Up @@ -14,34 +14,42 @@ Credits goes to the one who designed these UI in Sketch, Adobe any using many va
<center><b>Home</b>:</center>
<hr/>

![Alt text](screenshots/Screenshot_1587583830.png "Home")
<img src="screenshots/Screenshot_1587583830.png" alt="Home" height="500" />

<br/><hr/><br/>
<center><b>Ecommerce</b>:</center>
<hr/>

![Alt text](screenshots/Screenshot_1587583807.png "Ecommerce")
<img src="screenshots/Screenshot_1587583807.png" alt="Home" height="500" />

<br/><hr/><br/>
<center><b>Blog 1</b>:</center>
<hr/>

![Alt text](screenshots/Screenshot_1587583812.png "Blog 1")
<img src="screenshots/Screenshot_1587583812.png" alt="Home" height="500" />

<br/><hr/><br/>
<center><b>Blog 2</b>:</center>
<hr/>

![Alt text](screenshots/Screenshot_1587583816.png "Blog 2")
<img src="screenshots/Screenshot_1587583816.png" alt="Home" height="500" />

<br/><hr/><br/>
<center><b>Dashboard</b>:</center>
<hr/>

![Alt text](screenshots/Screenshot_1587583819.png "Dashboard")
<img src="screenshots/Screenshot_1587583812.png" alt="Home" height="500" />

<br/><hr/><br/>
<center><b>Workout</b>:</center>
<hr/>

![Alt text](screenshots/Screenshot_1587583823.png "Workout")
<img src="screenshots/Screenshot_1587583823.png" alt="Home" height="500" />

<br/><hr/><br/>
<center><b>Weather</b>:</center>
<hr/>

<img src="screenshots/Screenshot_1588175011.png" alt="Home" height="500" />
<img src="screenshots/Screenshot_1588174670.png" alt="Home" height="500" />

12 changes: 12 additions & 0 deletions lib/main.dart
Expand Up @@ -3,6 +3,7 @@ import 'package:lazybitui/ui/1.dart';
import 'package:lazybitui/ui/blog_home_one.dart';
import 'package:lazybitui/ui/blog_home_two.dart';
import 'package:lazybitui/ui/dashboard_one.dart';
import 'package:lazybitui/ui/weather_one.dart';
import 'package:lazybitui/ui/workout_one.dart';

void main() => runApp(MyApp());
Expand All @@ -17,6 +18,7 @@ class MyApp extends StatelessWidget {
'/blog2': (BuildContext context) => new BlogHomeTwo(),
'/dashboard': (BuildContext context) => new DashboardOne(),
'/workout': (BuildContext context) => new WorkoutOne(),
'/weather': (BuildContext context) => new WeatherOne(),
},
debugShowCheckedModeBanner: false,
title: 'Lazybit UI',
Expand Down Expand Up @@ -90,6 +92,16 @@ class _MyHomePageState extends State<MyHomePage> {
},
child: Text("Workout"),
),
),
Container(
height: 100,
width: 100,
child: MaterialButton(
onPressed: () {
Navigator.of(context).pushNamed('/weather');
},
child: Text("Weather"),
),
)
],
),
Expand Down

0 comments on commit cef0bcb

Please sign in to comment.