├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── deliverit │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── image1.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── lib ├── blocs │ ├── authentication │ │ ├── authentication.dart │ │ ├── authentication_bloc.dart │ │ ├── authentication_event.dart │ │ └── authentication_state.dart │ ├── login │ │ ├── login.dart │ │ ├── login_bloc.dart │ │ ├── login_event.dart │ │ └── login_state.dart │ └── phone_verify │ │ ├── phone_verify.dart │ │ ├── phone_verify_bloc.dart │ │ ├── phone_verify_event.dart │ │ └── phone_verify_state.dart ├── main.dart ├── respositories │ └── user_repository.dart ├── screens │ ├── home_screen.dart │ ├── login_screen.dart │ ├── phone_verify_screen.dart │ ├── sign_up_screen.dart │ └── user_profile_screen.dart ├── services │ └── validator.dart └── widgets │ ├── login_form.dart │ ├── page_header.dart │ ├── raised_button_di.dart │ ├── styled_button.dart │ ├── styled_input_field.dart │ └── vertical_divider.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/README.md -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/deliverit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/java/com/example/deliverit/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/assets/image1.png -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/blocs/authentication/authentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/authentication/authentication.dart -------------------------------------------------------------------------------- /lib/blocs/authentication/authentication_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/authentication/authentication_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/authentication/authentication_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/authentication/authentication_event.dart -------------------------------------------------------------------------------- /lib/blocs/authentication/authentication_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/authentication/authentication_state.dart -------------------------------------------------------------------------------- /lib/blocs/login/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/login/login.dart -------------------------------------------------------------------------------- /lib/blocs/login/login_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/login/login_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/login/login_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/login/login_event.dart -------------------------------------------------------------------------------- /lib/blocs/login/login_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/login/login_state.dart -------------------------------------------------------------------------------- /lib/blocs/phone_verify/phone_verify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/phone_verify/phone_verify.dart -------------------------------------------------------------------------------- /lib/blocs/phone_verify/phone_verify_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/phone_verify/phone_verify_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/phone_verify/phone_verify_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/phone_verify/phone_verify_event.dart -------------------------------------------------------------------------------- /lib/blocs/phone_verify/phone_verify_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/blocs/phone_verify/phone_verify_state.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/respositories/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/respositories/user_repository.dart -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/screens/phone_verify_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/screens/phone_verify_screen.dart -------------------------------------------------------------------------------- /lib/screens/sign_up_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/screens/sign_up_screen.dart -------------------------------------------------------------------------------- /lib/screens/user_profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/screens/user_profile_screen.dart -------------------------------------------------------------------------------- /lib/services/validator.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/widgets/login_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/widgets/login_form.dart -------------------------------------------------------------------------------- /lib/widgets/page_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/widgets/page_header.dart -------------------------------------------------------------------------------- /lib/widgets/raised_button_di.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/widgets/raised_button_di.dart -------------------------------------------------------------------------------- /lib/widgets/styled_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/widgets/styled_button.dart -------------------------------------------------------------------------------- /lib/widgets/styled_input_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/widgets/styled_input_field.dart -------------------------------------------------------------------------------- /lib/widgets/vertical_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/lib/widgets/vertical_divider.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-hub-org/deliverIt-flutter/HEAD/test/widget_test.dart --------------------------------------------------------------------------------