Skip to content

Commit

Permalink
*Photography UI Added
Browse files Browse the repository at this point in the history
  • Loading branch information
luckycreationsindia committed Apr 30, 2020
1 parent cef0bcb commit 84626a5
Show file tree
Hide file tree
Showing 12 changed files with 535 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -53,3 +53,10 @@ Credits goes to the one who designed these UI in Sketch, Adobe any using many va
<img src="screenshots/Screenshot_1588175011.png" alt="Home" height="500" />
<img src="screenshots/Screenshot_1588174670.png" alt="Home" height="500" />

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

<img src="screenshots/Screenshot_1588286988.png" alt="Home" height="500" />
<img src="screenshots/Screenshot_1588286993.png" alt="Home" height="500" />

Binary file added assets/photography/photography_0.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/photography/photography_1.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/photography/photography_2.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/photography/photography_3.jpeg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/photography/photography_4.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/photography/photography_5.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/photography_one.dart';
import 'package:lazybitui/ui/weather_one.dart';
import 'package:lazybitui/ui/workout_one.dart';

Expand All @@ -19,6 +20,7 @@ class MyApp extends StatelessWidget {
'/dashboard': (BuildContext context) => new DashboardOne(),
'/workout': (BuildContext context) => new WorkoutOne(),
'/weather': (BuildContext context) => new WeatherOne(),
'/photography': (BuildContext context) => new PhotographyOne(),
},
debugShowCheckedModeBanner: false,
title: 'Lazybit UI',
Expand Down Expand Up @@ -102,6 +104,16 @@ class _MyHomePageState extends State<MyHomePage> {
},
child: Text("Weather"),
),
),
Container(
height: 100,
width: 100,
child: MaterialButton(
onPressed: () {
Navigator.of(context).pushNamed('/photography');
},
child: Text("Photography"),
),
)
],
),
Expand Down
510 changes: 510 additions & 0 deletions lib/ui/photography_one.dart

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions pubspec.yaml
Expand Up @@ -58,6 +58,12 @@ flutter:
- assets/blog/fashion_blog_image_four.jpg
- assets/blog/fashion_blog_image_five.jpeg
- assets/blog/fashion_blog_image_six.jpg
- assets/photography/photography_0.jpg
- assets/photography/photography_1.jpg
- assets/photography/photography_2.jpg
- assets/photography/photography_3.jpeg
- assets/photography/photography_4.jpg
- assets/photography/photography_5.jpg
# - images/a_dot_ham.jpeg

# An image asset can refer to one or more resolution-specific "variants", see
Expand Down
Binary file added screenshots/Screenshot_1588286988.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/Screenshot_1588286993.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 84626a5

Please sign in to comment.