Skip to content

Commit

Permalink
Develop (lohanidamodar#34)
Browse files Browse the repository at this point in the history
* fix typo (lohanidamodar#29)

* Update routes.dart (lohanidamodar#30)

* Bike app home and details page

* auth 3 screen

* screenshots and readme of bike and auth screen
  • Loading branch information
lohanidamodar authored Dec 11, 2019
1 parent 31b0840 commit d4a219e
Show file tree
Hide file tree
Showing 11 changed files with 991 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ My effort on replicating various apps UI on flutter.
- **[Animation Examples UI](#animations)**
- **[Ecommerce UIs](#ecommerce)**
- **[Login/signup UIs](#user-flow-screens)**
- **[Motorbike App UIs](#motorbike-app-uis)**
- **[Profile UIs](#profile-screens)**
- **[Invitation App UIs](#inviation-app-ui)**
- **[Lists UIs](#lists-uis)**
Expand Down Expand Up @@ -138,7 +139,10 @@ The code for Springy Widget is taken and refactored from (https://github.com/mat

## User Flow Screens

<img height="480px" src="screenshots/login7.png"> <img height="480px" src="screenshots/signup2.png"> <img height="480px" src="screenshots/login6.png"> <img height="480px" src="screenshots/auth2.png"> <img height="480px" src="screenshots/login5.png"> <img height="480px" src="screenshots/auth1.png"> <img height="480px" src="screenshots/login4.png"> <img height="480px" src="screenshots/login1.png"> <img height="480px" src="screenshots/login2.png"> <img height="480px" src="screenshots/login3.gif"> <img height="480px" src="screenshots/signup1.png">
<img height="480px" src="screenshots/auth3-1.png"> <img height="480px" src="screenshots/auth3-2.png"> <img height="480px" src="screenshots/login7.png"> <img height="480px" src="screenshots/signup2.png"> <img height="480px" src="screenshots/login6.png"> <img height="480px" src="screenshots/auth2.png"> <img height="480px" src="screenshots/login5.png"> <img height="480px" src="screenshots/auth1.png"> <img height="480px" src="screenshots/login4.png"> <img height="480px" src="screenshots/login1.png"> <img height="480px" src="screenshots/login2.png"> <img height="480px" src="screenshots/login3.gif"> <img height="480px" src="screenshots/signup1.png">

## Motorbike App UIs
<img height="480px" src="screenshots/bike1.png"> <img height="480px" src="screenshots/bike2.png">

## Profile Screens

Expand Down
6 changes: 5 additions & 1 deletion lib/core/presentation/res/assets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,8 @@ const String vegetables =
const String mangoSlice =
'https://firebasestorage.googleapis.com/v0/b/dl-flutter-ui-challenges.appspot.com/o/grocery%2Fmango_slice.png?alt=media';

const INVITE_ILLUSTRATION = "https://firebasestorage.googleapis.com/v0/b/dl-flutter-ui-challenges.appspot.com/o/img%2Finvite.png?alt=media";
const INVITE_ILLUSTRATION = "https://firebasestorage.googleapis.com/v0/b/dl-flutter-ui-challenges.appspot.com/o/img%2Finvite.png?alt=media";

const String bike = "https://firebasestorage.googleapis.com/v0/b/dl-flutter-ui-challenges.appspot.com/o/bike%2Fbike1.jpg?alt=media";

const String room4 = "assets/hotel/room4.jpg";
14 changes: 11 additions & 3 deletions lib/core/presentation/routes.dart
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@

import 'package:flutter/material.dart';
import 'package:flutter_ui_challenges/core/data/models/menu.dart';
import 'package:flutter_ui_challenges/src/pages/bike/bike_details.dart';
import 'package:flutter_ui_challenges/src/pages/bike/home_page.dart';
import 'package:flutter_ui_challenges/src/pages/blog/sports_news1.dart';
import 'package:flutter_ui_challenges/src/pages/invitation/inauth.dart';
import 'package:flutter_ui_challenges/src/pages/invitation/inlanding.dart';
import 'package:flutter_ui_challenges/src/pages/invitation/invitation1.dart';
import 'package:flutter_ui_challenges/src/pages/login/auth3.dart';
import 'package:flutter_ui_challenges/src/pages/misc/bottomsheet.dart';
import 'package:flutter_ui_challenges/src/pages/food/cake.dart';
import 'package:flutter_ui_challenges/src/pages/misc/image_popup.dart';
Expand Down Expand Up @@ -105,12 +108,13 @@ final List<dynamic> pages = [
path: ProfileFourPage.path),
SubMenuItem("Profile Five", ProfileFivePage(),
path: ProfileFivePage.path),
SubMenuItem("Profile six", ProfileSixPage(sid),
SubMenuItem("Profile Six", ProfileSixPage(sid),
path: ProfileSixPage.path),
SubMenuItem("Profile Seven", ProfileSevenPage(),
path: ProfileSevenPage.path),
]),
MenuItem(title: "Authentication", icon: Icons.lock, items: [
SubMenuItem("Auth Three", AuthThreePage(), path: AuthThreePage.path),
SubMenuItem("Auth One", AuthOnePage(), path: AuthOnePage.path),
SubMenuItem("Auth Two", AuthTwoPage(), path: AuthTwoPage.path),
SubMenuItem("Login One", LoginOnePage(), path: LoginOnePage.path),
Expand All @@ -123,6 +127,10 @@ final List<dynamic> pages = [
SubMenuItem("Signup One", SignupOnePage(), path: SignupOnePage.path),
SubMenuItem("Signup Two", SignupTwoPage(), path: SignupTwoPage.path),
]),
MenuItem(title: "Motorbike App", icon: Icons.list, items: [
SubMenuItem("Home Page", BikeHomePage(), path: BikeHomePage.path),
SubMenuItem("Bike Details Page", BikeDetailsPage(), path: BikeDetailsPage.path),
]),
MenuItem(title: "Lists", icon: Icons.list, items: [
SubMenuItem("Places List One", PlaceList1(), path: PlaceList1.path),
SubMenuItem("List Two", SchoolList(), path: SchoolList.path),
Expand Down Expand Up @@ -235,7 +243,7 @@ final List<dynamic> pages = [
SubMenuItem("Onboarding 3", IntroThreePage(), path: IntroThreePage.path),
SubMenuItem("Onboarding 5", Intro5(), path: Intro5.path),
]),
MenuItem(title: "Miscllaneous", items: [
MenuItem(title: "Miscellaneous", items: [
SubMenuItem("Image Popup", ImagePopupPage(),
path: ImagePopupPage.path),
SubMenuItem("Event Invitation", InvitationPageOne(),
Expand Down Expand Up @@ -280,4 +288,4 @@ final List<dynamic> pages = [
}
});
return item;
}
}
Loading

0 comments on commit d4a219e

Please sign in to comment.