├── .github └── layout.png ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── br │ │ │ │ └── com │ │ │ │ └── ismael │ │ │ │ └── pay_flow │ │ │ │ └── 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 ├── fonts │ ├── Inter-Regular.ttf │ └── LexendDeca-Regular.ttf ├── images │ ├── add.png │ ├── apple.png │ ├── barcode.png │ ├── br.png │ ├── close.png │ ├── doc.png │ ├── eua.png │ ├── facebook.png │ ├── google.png │ ├── icon.png │ ├── logofull.png │ ├── logomini.png │ ├── person.png │ ├── spain.png │ ├── splash.png │ ├── ticket.png │ ├── union.png │ └── wallet.png └── lotties │ └── empty.json ├── codemagic.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 180.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── firebase_app_id_file.json ├── lib ├── firebase_options.dart ├── i18n │ ├── strings.g.dart │ ├── strings.i18n.json │ ├── strings_en-EN.i18n.json │ └── strings_pt-BR.i18n.json ├── main.dart └── src │ ├── core │ ├── core.dart │ ├── data │ │ ├── data.dart │ │ ├── datasources │ │ │ ├── datasources.dart │ │ │ ├── ticket_datasource │ │ │ │ ├── i_ticket_datasource.dart │ │ │ │ └── ticket_datasource.dart │ │ │ └── user_datasource │ │ │ │ ├── i_user_datasource.dart │ │ │ │ └── user_datasource.dart │ │ ├── dtos │ │ │ ├── dtos.dart │ │ │ ├── ticket_dto.dart │ │ │ ├── ticket_dto.freezed.dart │ │ │ ├── ticket_dto.g.dart │ │ │ ├── user_dto.dart │ │ │ ├── user_dto.freezed.dart │ │ │ └── user_dto.g.dart │ │ └── repositories │ │ │ ├── repositories.dart │ │ │ ├── ticket_repository.dart │ │ │ └── user_repository.dart │ ├── domain │ │ ├── domain.dart │ │ ├── entities │ │ │ ├── custom_notification.dart │ │ │ ├── entities.dart │ │ │ ├── ticket_entity.dart │ │ │ ├── ticket_entity.freezed.dart │ │ │ ├── user_entity.dart │ │ │ └── user_entity.freezed.dart │ │ ├── repositories │ │ │ ├── i_ticket_repository.dart │ │ │ ├── i_user_repository.dart │ │ │ └── repositories.dart │ │ └── services │ │ │ ├── firebase_messaging_service.dart │ │ │ ├── firestore_service.dart │ │ │ ├── notification_service.dart │ │ │ └── services.dart │ ├── infrastructure │ │ ├── google_sign_in │ │ │ ├── google_sign_in.dart │ │ │ └── google_sign_in_adapter.dart │ │ ├── http │ │ │ ├── adapters │ │ │ │ ├── adapters.dart │ │ │ │ └── dio_http_adapter.dart │ │ │ ├── http.dart │ │ │ └── http_client.dart │ │ ├── infrastructure.dart │ │ └── service_locator │ │ │ └── service_locator.dart │ ├── presenter │ │ ├── app_store.dart │ │ ├── app_store.g.dart │ │ ├── assets │ │ │ ├── app_images.dart │ │ │ └── assets.dart │ │ ├── extensions │ │ │ ├── build_context_extensions.dart │ │ │ ├── date_time_extensions.dart │ │ │ ├── extensions.dart │ │ │ ├── future_extensions.dart │ │ │ ├── num_extensions.dart │ │ │ └── strings_extensions.dart │ │ ├── navigation │ │ │ ├── navigation.dart │ │ │ └── routes.dart │ │ ├── pay_flow_app.dart │ │ ├── presenter.dart │ │ └── ui │ │ │ ├── theme │ │ │ ├── app_colors.dart │ │ │ ├── app_text_styles.dart │ │ │ └── theme.dart │ │ │ ├── ui.dart │ │ │ └── widgets │ │ │ ├── shimmer_container.dart │ │ │ ├── translation_dropdown_widget.dart │ │ │ └── widgets.dart │ └── utils │ │ ├── admob_id.dart │ │ ├── utilities.dart │ │ └── utils.dart │ └── features │ ├── features.dart │ ├── home │ ├── home.dart │ └── presenter │ │ ├── home_store.dart │ │ ├── home_store.g.dart │ │ ├── pages │ │ ├── home_page.dart │ │ ├── pages.dart │ │ └── profile_page.dart │ │ ├── presenter.dart │ │ └── widgets │ │ ├── body_home_widget.dart │ │ ├── custom_appbar_widget.dart │ │ ├── ticket_card_widget.dart │ │ └── widgets.dart │ ├── login │ ├── data │ │ ├── data.dart │ │ └── repositories │ │ │ ├── login_with_google_repository.dart │ │ │ └── repositories.dart │ ├── domain │ │ ├── domain.dart │ │ ├── interfaces │ │ │ ├── interfaces.dart │ │ │ └── services │ │ │ │ ├── google_sign_in_service.dart │ │ │ │ ├── i_google_sign_in_service.dart │ │ │ │ └── services.dart │ │ ├── repositories │ │ │ ├── i_login_with_google_repository.dart │ │ │ └── repositories.dart │ │ └── usecases │ │ │ ├── get_user_usecase.dart │ │ │ ├── login_with_google_usecase.dart │ │ │ ├── save_user_usecase.dart │ │ │ └── usecases.dart │ ├── login.dart │ └── presenter │ │ ├── login_page.dart │ │ ├── login_store.dart │ │ ├── login_store.g.dart │ │ └── presenter.dart │ └── ticket_form │ ├── domain │ ├── domain.dart │ └── usecases │ │ ├── save_ticket_usecase.dart │ │ └── usecases.dart │ ├── presenter │ ├── presenter.dart │ ├── ticket_form_controller.dart │ ├── ticket_form_controller.g.dart │ ├── ticket_form_page.dart │ └── widgets │ │ ├── bottom_button_widget.dart │ │ ├── tile_form_widget.dart │ │ └── widgets.dart │ └── ticket_form.dart ├── pubspec.lock ├── pubspec.yaml └── scripts └── update_version.sh /.github/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/.github/layout.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | *.jks 2 | google-services.json -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/br/com/ismael/pay_flow/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/main/kotlin/br/com/ismael/pay_flow/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/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/ismaelpedro/pay_flow/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/ismaelpedro/pay_flow/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/ismaelpedro/pay_flow/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/ismaelpedro/pay_flow/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/LexendDeca-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/fonts/LexendDeca-Regular.ttf -------------------------------------------------------------------------------- /assets/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/add.png -------------------------------------------------------------------------------- /assets/images/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/apple.png -------------------------------------------------------------------------------- /assets/images/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/barcode.png -------------------------------------------------------------------------------- /assets/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/br.png -------------------------------------------------------------------------------- /assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/close.png -------------------------------------------------------------------------------- /assets/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/doc.png -------------------------------------------------------------------------------- /assets/images/eua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/eua.png -------------------------------------------------------------------------------- /assets/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/facebook.png -------------------------------------------------------------------------------- /assets/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/google.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/logofull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/logofull.png -------------------------------------------------------------------------------- /assets/images/logomini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/logomini.png -------------------------------------------------------------------------------- /assets/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/person.png -------------------------------------------------------------------------------- /assets/images/spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/spain.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /assets/images/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/ticket.png -------------------------------------------------------------------------------- /assets/images/union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/union.png -------------------------------------------------------------------------------- /assets/images/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/images/wallet.png -------------------------------------------------------------------------------- /assets/lotties/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/assets/lotties/empty.json -------------------------------------------------------------------------------- /codemagic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/codemagic.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/i18n/strings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/i18n/strings.g.dart -------------------------------------------------------------------------------- /lib/i18n/strings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/i18n/strings.i18n.json -------------------------------------------------------------------------------- /lib/i18n/strings_en-EN.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/i18n/strings_en-EN.i18n.json -------------------------------------------------------------------------------- /lib/i18n/strings_pt-BR.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/i18n/strings_pt-BR.i18n.json -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/core/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/core.dart -------------------------------------------------------------------------------- /lib/src/core/data/data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/data.dart -------------------------------------------------------------------------------- /lib/src/core/data/datasources/datasources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/datasources/datasources.dart -------------------------------------------------------------------------------- /lib/src/core/data/datasources/ticket_datasource/i_ticket_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/datasources/ticket_datasource/i_ticket_datasource.dart -------------------------------------------------------------------------------- /lib/src/core/data/datasources/ticket_datasource/ticket_datasource.dart: -------------------------------------------------------------------------------- 1 | export 'i_ticket_datasource.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/data/datasources/user_datasource/i_user_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/datasources/user_datasource/i_user_datasource.dart -------------------------------------------------------------------------------- /lib/src/core/data/datasources/user_datasource/user_datasource.dart: -------------------------------------------------------------------------------- 1 | export 'i_user_datasource.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/data/dtos/dtos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/dtos.dart -------------------------------------------------------------------------------- /lib/src/core/data/dtos/ticket_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/ticket_dto.dart -------------------------------------------------------------------------------- /lib/src/core/data/dtos/ticket_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/ticket_dto.freezed.dart -------------------------------------------------------------------------------- /lib/src/core/data/dtos/ticket_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/ticket_dto.g.dart -------------------------------------------------------------------------------- /lib/src/core/data/dtos/user_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/user_dto.dart -------------------------------------------------------------------------------- /lib/src/core/data/dtos/user_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/user_dto.freezed.dart -------------------------------------------------------------------------------- /lib/src/core/data/dtos/user_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/dtos/user_dto.g.dart -------------------------------------------------------------------------------- /lib/src/core/data/repositories/repositories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/repositories/repositories.dart -------------------------------------------------------------------------------- /lib/src/core/data/repositories/ticket_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/repositories/ticket_repository.dart -------------------------------------------------------------------------------- /lib/src/core/data/repositories/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/data/repositories/user_repository.dart -------------------------------------------------------------------------------- /lib/src/core/domain/domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/domain.dart -------------------------------------------------------------------------------- /lib/src/core/domain/entities/custom_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/entities/custom_notification.dart -------------------------------------------------------------------------------- /lib/src/core/domain/entities/entities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/entities/entities.dart -------------------------------------------------------------------------------- /lib/src/core/domain/entities/ticket_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/entities/ticket_entity.dart -------------------------------------------------------------------------------- /lib/src/core/domain/entities/ticket_entity.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/entities/ticket_entity.freezed.dart -------------------------------------------------------------------------------- /lib/src/core/domain/entities/user_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/entities/user_entity.dart -------------------------------------------------------------------------------- /lib/src/core/domain/entities/user_entity.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/entities/user_entity.freezed.dart -------------------------------------------------------------------------------- /lib/src/core/domain/repositories/i_ticket_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/repositories/i_ticket_repository.dart -------------------------------------------------------------------------------- /lib/src/core/domain/repositories/i_user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/repositories/i_user_repository.dart -------------------------------------------------------------------------------- /lib/src/core/domain/repositories/repositories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/repositories/repositories.dart -------------------------------------------------------------------------------- /lib/src/core/domain/services/firebase_messaging_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/services/firebase_messaging_service.dart -------------------------------------------------------------------------------- /lib/src/core/domain/services/firestore_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/services/firestore_service.dart -------------------------------------------------------------------------------- /lib/src/core/domain/services/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/services/notification_service.dart -------------------------------------------------------------------------------- /lib/src/core/domain/services/services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/domain/services/services.dart -------------------------------------------------------------------------------- /lib/src/core/infrastructure/google_sign_in/google_sign_in.dart: -------------------------------------------------------------------------------- 1 | export 'google_sign_in_adapter.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/infrastructure/google_sign_in/google_sign_in_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/infrastructure/google_sign_in/google_sign_in_adapter.dart -------------------------------------------------------------------------------- /lib/src/core/infrastructure/http/adapters/adapters.dart: -------------------------------------------------------------------------------- 1 | export 'dio_http_adapter.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/infrastructure/http/adapters/dio_http_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/infrastructure/http/adapters/dio_http_adapter.dart -------------------------------------------------------------------------------- /lib/src/core/infrastructure/http/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/infrastructure/http/http.dart -------------------------------------------------------------------------------- /lib/src/core/infrastructure/http/http_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/infrastructure/http/http_client.dart -------------------------------------------------------------------------------- /lib/src/core/infrastructure/infrastructure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/infrastructure/infrastructure.dart -------------------------------------------------------------------------------- /lib/src/core/infrastructure/service_locator/service_locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/infrastructure/service_locator/service_locator.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/app_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/app_store.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/app_store.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/app_store.g.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/assets/app_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/assets/app_images.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/assets/assets.dart: -------------------------------------------------------------------------------- 1 | export 'app_images.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/presenter/extensions/build_context_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/extensions/build_context_extensions.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/extensions/date_time_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/extensions/date_time_extensions.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/extensions/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/extensions/extensions.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/extensions/future_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/extensions/future_extensions.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/extensions/num_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/extensions/num_extensions.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/extensions/strings_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/extensions/strings_extensions.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/navigation/navigation.dart: -------------------------------------------------------------------------------- 1 | export 'routes.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/presenter/navigation/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/navigation/routes.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/pay_flow_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/pay_flow_app.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/presenter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/presenter.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/theme/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/theme/app_colors.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/theme/app_text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/theme/app_text_styles.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/theme/theme.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/ui.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/widgets/shimmer_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/widgets/shimmer_container.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/widgets/translation_dropdown_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/widgets/translation_dropdown_widget.dart -------------------------------------------------------------------------------- /lib/src/core/presenter/ui/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/presenter/ui/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/core/utils/admob_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/utils/admob_id.dart -------------------------------------------------------------------------------- /lib/src/core/utils/utilities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/utils/utilities.dart -------------------------------------------------------------------------------- /lib/src/core/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/core/utils/utils.dart -------------------------------------------------------------------------------- /lib/src/features/features.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/features.dart -------------------------------------------------------------------------------- /lib/src/features/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/home.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/home_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/home_store.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/home_store.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/home_store.g.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/pages/home_page.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/pages/pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/pages/pages.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/pages/profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/pages/profile_page.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/presenter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/presenter.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/widgets/body_home_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/widgets/body_home_widget.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/widgets/custom_appbar_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/widgets/custom_appbar_widget.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/widgets/ticket_card_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/widgets/ticket_card_widget.dart -------------------------------------------------------------------------------- /lib/src/features/home/presenter/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/home/presenter/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/login/data/data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/data/data.dart -------------------------------------------------------------------------------- /lib/src/features/login/data/repositories/login_with_google_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/data/repositories/login_with_google_repository.dart -------------------------------------------------------------------------------- /lib/src/features/login/data/repositories/repositories.dart: -------------------------------------------------------------------------------- 1 | export 'login_with_google_repository.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/login/domain/domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/domain.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/interfaces/interfaces.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/interfaces/interfaces.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/interfaces/services/google_sign_in_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/interfaces/services/google_sign_in_service.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/interfaces/services/i_google_sign_in_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/interfaces/services/i_google_sign_in_service.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/interfaces/services/services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/interfaces/services/services.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/repositories/i_login_with_google_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/repositories/i_login_with_google_repository.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/repositories/repositories.dart: -------------------------------------------------------------------------------- 1 | export 'i_login_with_google_repository.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/login/domain/usecases/get_user_usecase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/usecases/get_user_usecase.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/usecases/login_with_google_usecase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/usecases/login_with_google_usecase.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/usecases/save_user_usecase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/usecases/save_user_usecase.dart -------------------------------------------------------------------------------- /lib/src/features/login/domain/usecases/usecases.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/domain/usecases/usecases.dart -------------------------------------------------------------------------------- /lib/src/features/login/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/login.dart -------------------------------------------------------------------------------- /lib/src/features/login/presenter/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/presenter/login_page.dart -------------------------------------------------------------------------------- /lib/src/features/login/presenter/login_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/presenter/login_store.dart -------------------------------------------------------------------------------- /lib/src/features/login/presenter/login_store.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/presenter/login_store.g.dart -------------------------------------------------------------------------------- /lib/src/features/login/presenter/presenter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/login/presenter/presenter.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/domain/domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/domain/domain.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/domain/usecases/save_ticket_usecase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/domain/usecases/save_ticket_usecase.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/domain/usecases/usecases.dart: -------------------------------------------------------------------------------- 1 | export 'save_ticket_usecase.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/presenter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/presenter.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/ticket_form_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/ticket_form_controller.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/ticket_form_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/ticket_form_controller.g.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/ticket_form_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/ticket_form_page.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/widgets/bottom_button_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/widgets/bottom_button_widget.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/widgets/tile_form_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/widgets/tile_form_widget.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/presenter/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/presenter/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/ticket_form/ticket_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/lib/src/features/ticket_form/ticket_form.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpedro/pay_flow/HEAD/scripts/update_version.sh --------------------------------------------------------------------------------