├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_taxi_booking_customer_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── 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-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── apple.png ├── car_loyalty.png ├── cloud_shape_bg.png ├── donate.png ├── facebook.png ├── female_avtar.png ├── free_rides.png ├── google.png ├── greenpeace.png ├── india.png ├── les_rest.png ├── linkedin.png ├── locale │ ├── localization_en.json │ └── localization_fr.json ├── logo_small.png ├── loyalty.png ├── loyalty_program.png ├── male_avtar.png ├── mapiamge.jpeg ├── onboarding_0.png ├── onboarding_1.png ├── onboarding_2.png ├── onboarding_shape.png ├── onboarding_shape_.png ├── profile_header_bg.png └── wwf.png ├── fonts ├── GT-Eesti-Medium.ttf └── ViitIcons.ttf ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── 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 │ └── Runner-Bridging-Header.h ├── lib ├── app_translations.dart ├── app_translations_delegate.dart ├── application.dart ├── common │ ├── model │ │ └── common_response.dart │ ├── my_colors.dart │ ├── my_const.dart │ ├── my_theme.dart │ └── viiticons_icons.dart ├── features │ ├── home │ │ ├── bloc │ │ │ ├── bloc.dart │ │ │ ├── home_bloc.dart │ │ │ ├── home_event.dart │ │ │ └── home_state.dart │ │ ├── book_taxi │ │ │ ├── location_information │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── location_information_bloc.dart │ │ │ │ │ ├── location_information_event.dart │ │ │ │ │ └── location_information_state.dart │ │ │ │ ├── bottom_sheets │ │ │ │ │ └── good_to_see_you_bottomsheet.dart │ │ │ │ ├── location_information_screen.dart │ │ │ │ └── where_to │ │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── where_to_bloc.dart │ │ │ │ │ ├── where_to_event.dart │ │ │ │ │ └── where_to_state.dart │ │ │ │ │ └── where_to_screen.dart │ │ │ ├── ongoing_trip │ │ │ │ ├── ongoing_trip_screen.dart │ │ │ │ ├── ratting.zip │ │ │ │ └── ratting │ │ │ │ │ └── ratting_screen.dart │ │ │ ├── readme.md │ │ │ └── vehicle_information_screen │ │ │ │ ├── payment_method │ │ │ │ └── payment_option.dart │ │ │ │ └── vehicle_information_screen.dart │ │ ├── common │ │ │ ├── add_address_to_mylist │ │ │ │ ├── add_address_to_mylist.dart │ │ │ │ └── bloc │ │ │ │ │ ├── add_address_to_mylist_bloc.dart │ │ │ │ │ ├── add_address_to_mylist_event.dart │ │ │ │ │ ├── add_address_to_mylist_state.dart │ │ │ │ │ └── bloc.dart │ │ │ └── location_from_map │ │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── location_from_map_bloc.dart │ │ │ │ ├── location_from_map_event.dart │ │ │ │ └── location_from_map_state.dart │ │ │ │ └── location_from_map_screen.dart │ │ ├── feel_good │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── feel_good_bloc.dart │ │ │ │ ├── feel_good_event.dart │ │ │ │ └── feel_good_state.dart │ │ │ └── feel_good_screen.dart │ │ ├── free_rides │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── free_rides_bloc.dart │ │ │ │ ├── free_rides_event.dart │ │ │ │ └── free_rides_state.dart │ │ │ ├── free_rides_how_work_details_screen.dart │ │ │ └── free_rides_screen.dart │ │ ├── help_support │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── help_support_bloc.dart │ │ │ │ ├── help_support_event.dart │ │ │ │ └── help_support_state.dart │ │ │ ├── contact_us │ │ │ │ └── contact_us_screen.dart │ │ │ ├── feedback │ │ │ │ └── feedback_screen.dart │ │ │ ├── help_support_questions │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── help_support_questions_bloc.dart │ │ │ │ │ ├── help_support_questions_event.dart │ │ │ │ │ └── help_support_questions_state.dart │ │ │ │ ├── help_support_questions_ans_screen.dart │ │ │ │ └── help_support_questions_screen.dart │ │ │ └── help_support_screen.dart │ │ ├── home_nav_drawer.dart │ │ ├── home_screen.dart │ │ ├── loyalty_program │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── loyalty_program_bloc.dart │ │ │ │ ├── loyalty_program_event.dart │ │ │ │ └── loyalty_program_state.dart │ │ │ ├── loyalty_program_details_screen.dart │ │ │ └── loyalty_program_screen.dart │ │ ├── myrides │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── myrides_bloc.dart │ │ │ │ ├── myrides_event.dart │ │ │ │ └── myrides_state.dart │ │ │ ├── canceled_ride_screen.dart │ │ │ ├── complet_ride_screen.dart │ │ │ ├── my_rides_screen.dart │ │ │ └── upcoming_ride_screen.dart │ │ ├── notification │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── notifications_bloc.dart │ │ │ │ ├── notifications_event.dart │ │ │ │ └── notifications_state.dart │ │ │ └── notifications_screen.dart │ │ ├── payment │ │ │ ├── add_payment_method │ │ │ │ ├── add_apple_pay │ │ │ │ │ ├── add_apple_pay_screen.dart │ │ │ │ │ └── bloc │ │ │ │ │ │ ├── add_apple_pay_bloc.dart │ │ │ │ │ │ ├── add_apple_pay_event.dart │ │ │ │ │ │ ├── add_apple_pay_state.dart │ │ │ │ │ │ └── bloc.dart │ │ │ │ ├── add_business_profile │ │ │ │ │ ├── add_business_profile_screen.dart │ │ │ │ │ ├── choose_payment_method_for_default.dart │ │ │ │ │ └── whats_your_business_email_screen.dart │ │ │ │ ├── add_card │ │ │ │ │ ├── add_card_screen.dart │ │ │ │ │ └── bloc │ │ │ │ │ │ ├── add_card_bloc.dart │ │ │ │ │ │ ├── add_card_event.dart │ │ │ │ │ │ ├── add_card_state.dart │ │ │ │ │ │ └── bloc.dart │ │ │ │ ├── add_payment_method_screen.dart │ │ │ │ └── ride_personal_profile │ │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── ride_personal_profile_bloc.dart │ │ │ │ │ ├── ride_personal_profile_event.dart │ │ │ │ │ └── ride_personal_profile_state.dart │ │ │ │ │ ├── edit_profile_name_screen.dart │ │ │ │ │ └── ride_personal_profile_screen.dart │ │ │ ├── apple_pay │ │ │ │ └── apple_pay_screen.dart │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── payment_bloc.dart │ │ │ │ ├── payment_event.dart │ │ │ │ └── payment_state.dart │ │ │ ├── cash │ │ │ │ └── cash_screen.dart │ │ │ ├── credit_card │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── credit_card_bloc.dart │ │ │ │ │ ├── credit_card_event.dart │ │ │ │ │ └── credit_card_state.dart │ │ │ │ └── credit_card_screen.dart │ │ │ ├── gpay │ │ │ │ └── g_pay_screen.dart │ │ │ └── payment_screen.dart │ │ ├── profile │ │ │ ├── change_password_screen.dart │ │ │ └── profile_screen.dart │ │ └── settings │ │ │ ├── bloc │ │ │ ├── bloc.dart │ │ │ ├── settings_bloc.dart │ │ │ ├── settings_event.dart │ │ │ └── settings_state.dart │ │ │ ├── emergency_contacts │ │ │ └── emergency_contact_screen.dart │ │ │ ├── fav_address │ │ │ ├── edit_fav_address_screen.dart │ │ │ └── fav_address_screen.dart │ │ │ ├── fav_driver │ │ │ └── fav_driver_screen.dart │ │ │ └── settings_screen.dart │ ├── landing │ │ ├── bloc │ │ │ ├── bloc.dart │ │ │ ├── landing_bloc.dart │ │ │ ├── landing_event.dart │ │ │ └── landing_state.dart │ │ └── landing_screen.dart │ ├── language │ │ ├── bloc │ │ │ ├── bloc.dart │ │ │ ├── language_bloc.dart │ │ │ ├── language_event.dart │ │ │ └── language_state.dart │ │ └── language_screen.dart │ ├── loginsignup │ │ ├── login │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── login_bloc.dart │ │ │ │ ├── login_event.dart │ │ │ │ └── login_state.dart │ │ │ ├── login_screen.dart │ │ │ └── model │ │ │ │ └── LoginResponse.dart │ │ ├── login_faceid │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── login_faceid_bloc.dart │ │ │ │ ├── login_faceid_event.dart │ │ │ │ └── login_faceid_state.dart │ │ │ └── login_faceid_screen.dart │ │ ├── reset_password │ │ │ ├── forgot │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── forgot_password_bloc.dart │ │ │ │ │ ├── forgot_password_event.dart │ │ │ │ │ └── forgot_password_state.dart │ │ │ │ └── forgot_password_screen.dart │ │ │ ├── otp │ │ │ │ ├── bloc │ │ │ │ │ ├── bloc.dart │ │ │ │ │ ├── opt_bloc.dart │ │ │ │ │ ├── opt_event.dart │ │ │ │ │ └── opt_state.dart │ │ │ │ └── otp_screen.dart │ │ │ └── reset │ │ │ │ ├── bloc │ │ │ │ ├── bloc.dart │ │ │ │ ├── reset_pass_bloc.dart │ │ │ │ ├── reset_pass_event.dart │ │ │ │ └── reset_pass_state.dart │ │ │ │ └── reset_screen.dart │ │ └── signup │ │ │ ├── bloc │ │ │ ├── bloc.dart │ │ │ ├── signup_bloc.dart │ │ │ ├── signup_event.dart │ │ │ └── signup_state.dart │ │ │ └── signup_screen.dart │ └── onboard │ │ ├── bloc │ │ ├── bloc.dart │ │ ├── onboard_bloc.dart │ │ ├── onboard_event.dart │ │ └── onboard_state.dart │ │ └── onboard_screen.dart ├── injections.dart ├── main.dart ├── repo │ ├── api_provider.dart │ ├── failures.dart │ ├── lan_manager.dart │ ├── network_info.dart │ ├── pref_manager.dart │ └── repo_provider.dart ├── route_generator.dart └── widgets │ ├── add_location_suggestion_widget.dart │ ├── border_button_widget.dart │ ├── country_selection_textfield_widget.dart │ ├── credit_card_widget.dart │ ├── custom_widget_rules.md │ ├── date_picker_widget.dart │ ├── date_selection_container.dart │ ├── dialog_box_widget.dart │ ├── dialog_loading_widget.dart │ ├── fab_button.dart │ ├── flat_button_widget.dart │ ├── from_to_location_card_widget.dart │ ├── language_button.dart │ ├── multiline_textfield_widget.dart │ ├── my_listtile_widget.dart │ ├── my_radio_text.dart │ ├── my_ride_tab_widget.dart │ ├── nav_menu_item.dart │ ├── notifications_widget.dart │ ├── onboard_widget.dart │ ├── password_textfield.dart │ ├── pay_widget.dart │ ├── payment_method_type_widget.dart │ ├── pin_entry_text_fild_widget.dart │ ├── platform │ ├── platform_alert_dialog.dart │ ├── platform_date_dialog.dart │ └── platform_widget.dart │ ├── privacy_widget.dart │ ├── promo_box_widget.dart │ ├── recent_address_item_list.dart │ ├── ride_profile_widget.dart │ ├── rounded_chat_widget.dart │ ├── selected_vehicel_type_widget.dart │ ├── slide_menu_widget.dart │ ├── social_media_widget.dart │ ├── square_add_location_textfield_widget.dart │ ├── square_schedule_textfield_widget.dart │ ├── square_textfield_widget.dart │ ├── tip_amound_widget.dart │ ├── upcoming_ride_itmelayout_widget.dart │ ├── vehicles_item_layout_widget.dart │ ├── viit_appbar.dart │ ├── wave_animation_widget.dart │ └── wavy_header_widget.dart ├── pubspec.lock ├── pubspec.yaml └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_taxi_booking_customer_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/kotlin/com/example/flutter_taxi_booking_customer_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/apple.png -------------------------------------------------------------------------------- /assets/car_loyalty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/car_loyalty.png -------------------------------------------------------------------------------- /assets/cloud_shape_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/cloud_shape_bg.png -------------------------------------------------------------------------------- /assets/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/donate.png -------------------------------------------------------------------------------- /assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/facebook.png -------------------------------------------------------------------------------- /assets/female_avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/female_avtar.png -------------------------------------------------------------------------------- /assets/free_rides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/free_rides.png -------------------------------------------------------------------------------- /assets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/google.png -------------------------------------------------------------------------------- /assets/greenpeace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/greenpeace.png -------------------------------------------------------------------------------- /assets/india.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/india.png -------------------------------------------------------------------------------- /assets/les_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/les_rest.png -------------------------------------------------------------------------------- /assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/linkedin.png -------------------------------------------------------------------------------- /assets/locale/localization_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/locale/localization_en.json -------------------------------------------------------------------------------- /assets/locale/localization_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/locale/localization_fr.json -------------------------------------------------------------------------------- /assets/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/logo_small.png -------------------------------------------------------------------------------- /assets/loyalty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/loyalty.png -------------------------------------------------------------------------------- /assets/loyalty_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/loyalty_program.png -------------------------------------------------------------------------------- /assets/male_avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/male_avtar.png -------------------------------------------------------------------------------- /assets/mapiamge.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/mapiamge.jpeg -------------------------------------------------------------------------------- /assets/onboarding_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/onboarding_0.png -------------------------------------------------------------------------------- /assets/onboarding_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/onboarding_1.png -------------------------------------------------------------------------------- /assets/onboarding_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/onboarding_2.png -------------------------------------------------------------------------------- /assets/onboarding_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/onboarding_shape.png -------------------------------------------------------------------------------- /assets/onboarding_shape_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/onboarding_shape_.png -------------------------------------------------------------------------------- /assets/profile_header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/profile_header_bg.png -------------------------------------------------------------------------------- /assets/wwf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/assets/wwf.png -------------------------------------------------------------------------------- /fonts/GT-Eesti-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/fonts/GT-Eesti-Medium.ttf -------------------------------------------------------------------------------- /fonts/ViitIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/fonts/ViitIcons.ttf -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/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/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/app_translations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/app_translations.dart -------------------------------------------------------------------------------- /lib/app_translations_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/app_translations_delegate.dart -------------------------------------------------------------------------------- /lib/application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/application.dart -------------------------------------------------------------------------------- /lib/common/model/common_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/common/model/common_response.dart -------------------------------------------------------------------------------- /lib/common/my_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/common/my_colors.dart -------------------------------------------------------------------------------- /lib/common/my_const.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/common/my_const.dart -------------------------------------------------------------------------------- /lib/common/my_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/common/my_theme.dart -------------------------------------------------------------------------------- /lib/common/viiticons_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/common/viiticons_icons.dart -------------------------------------------------------------------------------- /lib/features/home/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/bloc/home_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/bloc/home_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/bloc/home_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/bloc/home_event.dart -------------------------------------------------------------------------------- /lib/features/home/bloc/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/bloc/home_state.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/bloc/location_information_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/bloc/location_information_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/bloc/location_information_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/bloc/location_information_event.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/bloc/location_information_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/bloc/location_information_state.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/bottom_sheets/good_to_see_you_bottomsheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/bottom_sheets/good_to_see_you_bottomsheet.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/location_information_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/location_information_screen.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/where_to/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/where_to/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/where_to/bloc/where_to_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/where_to/bloc/where_to_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/where_to/bloc/where_to_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/where_to/bloc/where_to_event.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/where_to/bloc/where_to_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/where_to/bloc/where_to_state.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/location_information/where_to/where_to_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/location_information/where_to/where_to_screen.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/ongoing_trip/ongoing_trip_screen.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/features/home/book_taxi/ongoing_trip/ratting.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/ongoing_trip/ratting.zip -------------------------------------------------------------------------------- /lib/features/home/book_taxi/ongoing_trip/ratting/ratting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/ongoing_trip/ratting/ratting_screen.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/readme.md -------------------------------------------------------------------------------- /lib/features/home/book_taxi/vehicle_information_screen/payment_method/payment_option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/vehicle_information_screen/payment_method/payment_option.dart -------------------------------------------------------------------------------- /lib/features/home/book_taxi/vehicle_information_screen/vehicle_information_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/book_taxi/vehicle_information_screen/vehicle_information_screen.dart -------------------------------------------------------------------------------- /lib/features/home/common/add_address_to_mylist/add_address_to_mylist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/add_address_to_mylist/add_address_to_mylist.dart -------------------------------------------------------------------------------- /lib/features/home/common/add_address_to_mylist/bloc/add_address_to_mylist_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/add_address_to_mylist/bloc/add_address_to_mylist_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/common/add_address_to_mylist/bloc/add_address_to_mylist_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/add_address_to_mylist/bloc/add_address_to_mylist_event.dart -------------------------------------------------------------------------------- /lib/features/home/common/add_address_to_mylist/bloc/add_address_to_mylist_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/add_address_to_mylist/bloc/add_address_to_mylist_state.dart -------------------------------------------------------------------------------- /lib/features/home/common/add_address_to_mylist/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/add_address_to_mylist/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/common/location_from_map/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/location_from_map/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/common/location_from_map/bloc/location_from_map_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/location_from_map/bloc/location_from_map_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/common/location_from_map/bloc/location_from_map_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/location_from_map/bloc/location_from_map_event.dart -------------------------------------------------------------------------------- /lib/features/home/common/location_from_map/bloc/location_from_map_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/location_from_map/bloc/location_from_map_state.dart -------------------------------------------------------------------------------- /lib/features/home/common/location_from_map/location_from_map_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/common/location_from_map/location_from_map_screen.dart -------------------------------------------------------------------------------- /lib/features/home/feel_good/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/feel_good/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/feel_good/bloc/feel_good_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/feel_good/bloc/feel_good_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/feel_good/bloc/feel_good_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/feel_good/bloc/feel_good_event.dart -------------------------------------------------------------------------------- /lib/features/home/feel_good/bloc/feel_good_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/feel_good/bloc/feel_good_state.dart -------------------------------------------------------------------------------- /lib/features/home/feel_good/feel_good_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/feel_good/feel_good_screen.dart -------------------------------------------------------------------------------- /lib/features/home/free_rides/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/free_rides/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/free_rides/bloc/free_rides_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/free_rides/bloc/free_rides_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/free_rides/bloc/free_rides_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/free_rides/bloc/free_rides_event.dart -------------------------------------------------------------------------------- /lib/features/home/free_rides/bloc/free_rides_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/free_rides/bloc/free_rides_state.dart -------------------------------------------------------------------------------- /lib/features/home/free_rides/free_rides_how_work_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/free_rides/free_rides_how_work_details_screen.dart -------------------------------------------------------------------------------- /lib/features/home/free_rides/free_rides_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/free_rides/free_rides_screen.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/bloc/help_support_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/bloc/help_support_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/bloc/help_support_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/bloc/help_support_event.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/bloc/help_support_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/bloc/help_support_state.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/contact_us/contact_us_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/contact_us/contact_us_screen.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/feedback/feedback_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/feedback/feedback_screen.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_questions/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_questions/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_questions/bloc/help_support_questions_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_questions/bloc/help_support_questions_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_questions/bloc/help_support_questions_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_questions/bloc/help_support_questions_event.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_questions/bloc/help_support_questions_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_questions/bloc/help_support_questions_state.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_questions/help_support_questions_ans_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_questions/help_support_questions_ans_screen.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_questions/help_support_questions_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_questions/help_support_questions_screen.dart -------------------------------------------------------------------------------- /lib/features/home/help_support/help_support_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/help_support/help_support_screen.dart -------------------------------------------------------------------------------- /lib/features/home/home_nav_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/home_nav_drawer.dart -------------------------------------------------------------------------------- /lib/features/home/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/home_screen.dart -------------------------------------------------------------------------------- /lib/features/home/loyalty_program/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/loyalty_program/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/loyalty_program/bloc/loyalty_program_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/loyalty_program/bloc/loyalty_program_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/loyalty_program/bloc/loyalty_program_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/loyalty_program/bloc/loyalty_program_event.dart -------------------------------------------------------------------------------- /lib/features/home/loyalty_program/bloc/loyalty_program_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/loyalty_program/bloc/loyalty_program_state.dart -------------------------------------------------------------------------------- /lib/features/home/loyalty_program/loyalty_program_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/loyalty_program/loyalty_program_details_screen.dart -------------------------------------------------------------------------------- /lib/features/home/loyalty_program/loyalty_program_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/loyalty_program/loyalty_program_screen.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/bloc/myrides_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/bloc/myrides_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/bloc/myrides_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/bloc/myrides_event.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/bloc/myrides_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/bloc/myrides_state.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/canceled_ride_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/canceled_ride_screen.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/complet_ride_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/complet_ride_screen.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/my_rides_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/my_rides_screen.dart -------------------------------------------------------------------------------- /lib/features/home/myrides/upcoming_ride_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/myrides/upcoming_ride_screen.dart -------------------------------------------------------------------------------- /lib/features/home/notification/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/notification/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/notification/bloc/notifications_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/notification/bloc/notifications_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/notification/bloc/notifications_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/notification/bloc/notifications_event.dart -------------------------------------------------------------------------------- /lib/features/home/notification/bloc/notifications_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/notification/bloc/notifications_state.dart -------------------------------------------------------------------------------- /lib/features/home/notification/notifications_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/notification/notifications_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_apple_pay/add_apple_pay_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_apple_pay/add_apple_pay_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_apple_pay/bloc/add_apple_pay_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_apple_pay/bloc/add_apple_pay_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_apple_pay/bloc/add_apple_pay_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_apple_pay/bloc/add_apple_pay_event.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_apple_pay/bloc/add_apple_pay_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_apple_pay/bloc/add_apple_pay_state.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_apple_pay/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_apple_pay/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_business_profile/add_business_profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_business_profile/add_business_profile_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_business_profile/choose_payment_method_for_default.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_business_profile/choose_payment_method_for_default.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_business_profile/whats_your_business_email_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_business_profile/whats_your_business_email_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_card/add_card_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_card/add_card_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_card/bloc/add_card_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_card/bloc/add_card_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_card/bloc/add_card_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_card/bloc/add_card_event.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_card/bloc/add_card_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_card/bloc/add_card_state.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_card/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_card/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/add_payment_method_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/add_payment_method_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/ride_personal_profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/ride_personal_profile_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/ride_personal_profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/ride_personal_profile_event.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/ride_personal_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/ride_personal_profile/bloc/ride_personal_profile_state.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/ride_personal_profile/edit_profile_name_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/ride_personal_profile/edit_profile_name_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/add_payment_method/ride_personal_profile/ride_personal_profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/add_payment_method/ride_personal_profile/ride_personal_profile_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/apple_pay/apple_pay_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/apple_pay/apple_pay_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/bloc/payment_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/bloc/payment_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/bloc/payment_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/bloc/payment_event.dart -------------------------------------------------------------------------------- /lib/features/home/payment/bloc/payment_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/bloc/payment_state.dart -------------------------------------------------------------------------------- /lib/features/home/payment/cash/cash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/cash/cash_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/credit_card/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/credit_card/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/credit_card/bloc/credit_card_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/credit_card/bloc/credit_card_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/payment/credit_card/bloc/credit_card_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/credit_card/bloc/credit_card_event.dart -------------------------------------------------------------------------------- /lib/features/home/payment/credit_card/bloc/credit_card_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/credit_card/bloc/credit_card_state.dart -------------------------------------------------------------------------------- /lib/features/home/payment/credit_card/credit_card_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/credit_card/credit_card_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/gpay/g_pay_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/gpay/g_pay_screen.dart -------------------------------------------------------------------------------- /lib/features/home/payment/payment_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/payment/payment_screen.dart -------------------------------------------------------------------------------- /lib/features/home/profile/change_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/profile/change_password_screen.dart -------------------------------------------------------------------------------- /lib/features/home/profile/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/profile/profile_screen.dart -------------------------------------------------------------------------------- /lib/features/home/settings/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/home/settings/bloc/settings_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/bloc/settings_bloc.dart -------------------------------------------------------------------------------- /lib/features/home/settings/bloc/settings_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/bloc/settings_event.dart -------------------------------------------------------------------------------- /lib/features/home/settings/bloc/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/bloc/settings_state.dart -------------------------------------------------------------------------------- /lib/features/home/settings/emergency_contacts/emergency_contact_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/emergency_contacts/emergency_contact_screen.dart -------------------------------------------------------------------------------- /lib/features/home/settings/fav_address/edit_fav_address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/fav_address/edit_fav_address_screen.dart -------------------------------------------------------------------------------- /lib/features/home/settings/fav_address/fav_address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/fav_address/fav_address_screen.dart -------------------------------------------------------------------------------- /lib/features/home/settings/fav_driver/fav_driver_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/fav_driver/fav_driver_screen.dart -------------------------------------------------------------------------------- /lib/features/home/settings/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/home/settings/settings_screen.dart -------------------------------------------------------------------------------- /lib/features/landing/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/landing/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/landing/bloc/landing_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/landing/bloc/landing_bloc.dart -------------------------------------------------------------------------------- /lib/features/landing/bloc/landing_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/landing/bloc/landing_event.dart -------------------------------------------------------------------------------- /lib/features/landing/bloc/landing_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/landing/bloc/landing_state.dart -------------------------------------------------------------------------------- /lib/features/landing/landing_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/landing/landing_screen.dart -------------------------------------------------------------------------------- /lib/features/language/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/language/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/language/bloc/language_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/language/bloc/language_bloc.dart -------------------------------------------------------------------------------- /lib/features/language/bloc/language_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/language/bloc/language_event.dart -------------------------------------------------------------------------------- /lib/features/language/bloc/language_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/language/bloc/language_state.dart -------------------------------------------------------------------------------- /lib/features/language/language_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/language/language_screen.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login/bloc/login_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login/bloc/login_bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login/bloc/login_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login/bloc/login_event.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login/bloc/login_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login/bloc/login_state.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login/login_screen.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login/model/LoginResponse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login/model/LoginResponse.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login_faceid/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login_faceid/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login_faceid/bloc/login_faceid_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login_faceid/bloc/login_faceid_bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login_faceid/bloc/login_faceid_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login_faceid/bloc/login_faceid_event.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login_faceid/bloc/login_faceid_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login_faceid/bloc/login_faceid_state.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/login_faceid/login_faceid_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/login_faceid/login_faceid_screen.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/forgot/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/forgot/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/forgot/bloc/forgot_password_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/forgot/bloc/forgot_password_bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/forgot/bloc/forgot_password_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/forgot/bloc/forgot_password_event.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/forgot/bloc/forgot_password_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/forgot/bloc/forgot_password_state.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/forgot/forgot_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/forgot/forgot_password_screen.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/otp/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/otp/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/otp/bloc/opt_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/otp/bloc/opt_bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/otp/bloc/opt_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/otp/bloc/opt_event.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/otp/bloc/opt_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/otp/bloc/opt_state.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/otp/otp_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/otp/otp_screen.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/reset/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/reset/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/reset/bloc/reset_pass_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/reset/bloc/reset_pass_bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/reset/bloc/reset_pass_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/reset/bloc/reset_pass_event.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/reset/bloc/reset_pass_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/reset/bloc/reset_pass_state.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/reset_password/reset/reset_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/reset_password/reset/reset_screen.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/signup/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/signup/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/signup/bloc/signup_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/signup/bloc/signup_bloc.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/signup/bloc/signup_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/signup/bloc/signup_event.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/signup/bloc/signup_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/signup/bloc/signup_state.dart -------------------------------------------------------------------------------- /lib/features/loginsignup/signup/signup_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/loginsignup/signup/signup_screen.dart -------------------------------------------------------------------------------- /lib/features/onboard/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/onboard/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/features/onboard/bloc/onboard_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/onboard/bloc/onboard_bloc.dart -------------------------------------------------------------------------------- /lib/features/onboard/bloc/onboard_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/onboard/bloc/onboard_event.dart -------------------------------------------------------------------------------- /lib/features/onboard/bloc/onboard_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/onboard/bloc/onboard_state.dart -------------------------------------------------------------------------------- /lib/features/onboard/onboard_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/features/onboard/onboard_screen.dart -------------------------------------------------------------------------------- /lib/injections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/injections.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/repo/api_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/repo/api_provider.dart -------------------------------------------------------------------------------- /lib/repo/failures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/repo/failures.dart -------------------------------------------------------------------------------- /lib/repo/lan_manager.dart: -------------------------------------------------------------------------------- 1 | class LanManager { 2 | static const KEY_LBL_LOGIN = "lbl_login"; 3 | } 4 | -------------------------------------------------------------------------------- /lib/repo/network_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/repo/network_info.dart -------------------------------------------------------------------------------- /lib/repo/pref_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/repo/pref_manager.dart -------------------------------------------------------------------------------- /lib/repo/repo_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/repo/repo_provider.dart -------------------------------------------------------------------------------- /lib/route_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/route_generator.dart -------------------------------------------------------------------------------- /lib/widgets/add_location_suggestion_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/add_location_suggestion_widget.dart -------------------------------------------------------------------------------- /lib/widgets/border_button_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/border_button_widget.dart -------------------------------------------------------------------------------- /lib/widgets/country_selection_textfield_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/country_selection_textfield_widget.dart -------------------------------------------------------------------------------- /lib/widgets/credit_card_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/credit_card_widget.dart -------------------------------------------------------------------------------- /lib/widgets/custom_widget_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/custom_widget_rules.md -------------------------------------------------------------------------------- /lib/widgets/date_picker_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/date_picker_widget.dart -------------------------------------------------------------------------------- /lib/widgets/date_selection_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/date_selection_container.dart -------------------------------------------------------------------------------- /lib/widgets/dialog_box_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/dialog_box_widget.dart -------------------------------------------------------------------------------- /lib/widgets/dialog_loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/dialog_loading_widget.dart -------------------------------------------------------------------------------- /lib/widgets/fab_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/fab_button.dart -------------------------------------------------------------------------------- /lib/widgets/flat_button_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/flat_button_widget.dart -------------------------------------------------------------------------------- /lib/widgets/from_to_location_card_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/from_to_location_card_widget.dart -------------------------------------------------------------------------------- /lib/widgets/language_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/language_button.dart -------------------------------------------------------------------------------- /lib/widgets/multiline_textfield_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/multiline_textfield_widget.dart -------------------------------------------------------------------------------- /lib/widgets/my_listtile_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/my_listtile_widget.dart -------------------------------------------------------------------------------- /lib/widgets/my_radio_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/my_radio_text.dart -------------------------------------------------------------------------------- /lib/widgets/my_ride_tab_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/my_ride_tab_widget.dart -------------------------------------------------------------------------------- /lib/widgets/nav_menu_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/nav_menu_item.dart -------------------------------------------------------------------------------- /lib/widgets/notifications_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/notifications_widget.dart -------------------------------------------------------------------------------- /lib/widgets/onboard_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/onboard_widget.dart -------------------------------------------------------------------------------- /lib/widgets/password_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/password_textfield.dart -------------------------------------------------------------------------------- /lib/widgets/pay_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/pay_widget.dart -------------------------------------------------------------------------------- /lib/widgets/payment_method_type_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/payment_method_type_widget.dart -------------------------------------------------------------------------------- /lib/widgets/pin_entry_text_fild_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/pin_entry_text_fild_widget.dart -------------------------------------------------------------------------------- /lib/widgets/platform/platform_alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/platform/platform_alert_dialog.dart -------------------------------------------------------------------------------- /lib/widgets/platform/platform_date_dialog.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/widgets/platform/platform_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/platform/platform_widget.dart -------------------------------------------------------------------------------- /lib/widgets/privacy_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/privacy_widget.dart -------------------------------------------------------------------------------- /lib/widgets/promo_box_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/promo_box_widget.dart -------------------------------------------------------------------------------- /lib/widgets/recent_address_item_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/recent_address_item_list.dart -------------------------------------------------------------------------------- /lib/widgets/ride_profile_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/ride_profile_widget.dart -------------------------------------------------------------------------------- /lib/widgets/rounded_chat_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/rounded_chat_widget.dart -------------------------------------------------------------------------------- /lib/widgets/selected_vehicel_type_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/selected_vehicel_type_widget.dart -------------------------------------------------------------------------------- /lib/widgets/slide_menu_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/slide_menu_widget.dart -------------------------------------------------------------------------------- /lib/widgets/social_media_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/social_media_widget.dart -------------------------------------------------------------------------------- /lib/widgets/square_add_location_textfield_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/square_add_location_textfield_widget.dart -------------------------------------------------------------------------------- /lib/widgets/square_schedule_textfield_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/square_schedule_textfield_widget.dart -------------------------------------------------------------------------------- /lib/widgets/square_textfield_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/square_textfield_widget.dart -------------------------------------------------------------------------------- /lib/widgets/tip_amound_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/tip_amound_widget.dart -------------------------------------------------------------------------------- /lib/widgets/upcoming_ride_itmelayout_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/upcoming_ride_itmelayout_widget.dart -------------------------------------------------------------------------------- /lib/widgets/vehicles_item_layout_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/vehicles_item_layout_widget.dart -------------------------------------------------------------------------------- /lib/widgets/viit_appbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/viit_appbar.dart -------------------------------------------------------------------------------- /lib/widgets/wave_animation_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/wave_animation_widget.dart -------------------------------------------------------------------------------- /lib/widgets/wavy_header_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/lib/widgets/wavy_header_widget.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalpesh209/flutter_taxi_booking_customer_app/HEAD/web/manifest.json --------------------------------------------------------------------------------