├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── dev │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── popupbits │ │ │ │ └── firebasestarter │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── key.properties ├── settings.gradle └── settings_aar.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Runner.xcscheme │ │ ├── dev.xcscheme │ │ └── prod.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── 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 │ └── RunnerDebug.entitlements ├── keys └── keystore.jks ├── lib ├── app.dart ├── core │ ├── data │ │ └── res │ │ │ └── data_constants.dart │ └── presentation │ │ ├── providers │ │ └── providers.dart │ │ └── res │ │ ├── analytics.dart │ │ ├── app_config.dart │ │ ├── assets.dart │ │ ├── colors.dart │ │ ├── constants.dart │ │ ├── messages.dart │ │ ├── routes.dart │ │ ├── sizes.dart │ │ └── themes.dart ├── features │ ├── auth │ │ ├── data │ │ │ └── model │ │ │ │ └── user_repository.dart │ │ └── presentation │ │ │ ├── pages │ │ │ ├── home.dart │ │ │ ├── login.dart │ │ │ ├── splash.dart │ │ │ └── user_info.dart │ │ │ └── widgets │ │ │ ├── auth_dialog.dart │ │ │ ├── login.dart │ │ │ └── signup.dart │ ├── events │ │ ├── data │ │ │ ├── models │ │ │ │ └── app_event.dart │ │ │ └── services │ │ │ │ └── event_firestore_service.dart │ │ └── presentation │ │ │ └── pages │ │ │ ├── add_event.dart │ │ │ └── event_details.dart │ ├── home │ │ └── presentation │ │ │ └── pages │ │ │ └── home.dart │ ├── notification │ │ └── data │ │ │ └── service │ │ │ └── push_notification_service.dart │ ├── onboarding │ │ └── presentation │ │ │ └── pages │ │ │ └── intro.dart │ └── profile │ │ ├── data │ │ ├── model │ │ │ ├── device.dart │ │ │ ├── device_field.dart │ │ │ ├── user.dart │ │ │ └── user_field.dart │ │ └── service │ │ │ └── user_db_service.dart │ │ └── presentation │ │ ├── pages │ │ ├── edit_profile.dart │ │ └── profile.dart │ │ └── widgets │ │ └── avatar.dart ├── generated │ ├── intl │ │ ├── messages_all.dart │ │ └── messages_en.dart │ └── l10n.dart ├── l10n │ └── intl_en.arb ├── main.dart └── main_prod.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/dev/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/dev/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/popupbits/firebasestarter/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/main/kotlin/com/popupbits/firebasestarter/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/key.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/key.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/prod.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/prod.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/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/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /ios/Runner/RunnerDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/ios/Runner/RunnerDebug.entitlements -------------------------------------------------------------------------------- /keys/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/keys/keystore.jks -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/core/data/res/data_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/data/res/data_constants.dart -------------------------------------------------------------------------------- /lib/core/presentation/providers/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/providers/providers.dart -------------------------------------------------------------------------------- /lib/core/presentation/res/analytics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/res/analytics.dart -------------------------------------------------------------------------------- /lib/core/presentation/res/app_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/res/app_config.dart -------------------------------------------------------------------------------- /lib/core/presentation/res/assets.dart: -------------------------------------------------------------------------------- 1 | class AppAssets { 2 | 3 | } -------------------------------------------------------------------------------- /lib/core/presentation/res/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/res/colors.dart -------------------------------------------------------------------------------- /lib/core/presentation/res/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/res/constants.dart -------------------------------------------------------------------------------- /lib/core/presentation/res/messages.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/core/presentation/res/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/res/routes.dart -------------------------------------------------------------------------------- /lib/core/presentation/res/sizes.dart: -------------------------------------------------------------------------------- 1 | class AppSizes { 2 | static const double borderRadius=10.0; 3 | } -------------------------------------------------------------------------------- /lib/core/presentation/res/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/core/presentation/res/themes.dart -------------------------------------------------------------------------------- /lib/features/auth/data/model/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/data/model/user_repository.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/pages/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/pages/home.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/pages/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/pages/login.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/pages/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/pages/splash.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/pages/user_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/pages/user_info.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/auth_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/widgets/auth_dialog.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/widgets/login.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/signup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/auth/presentation/widgets/signup.dart -------------------------------------------------------------------------------- /lib/features/events/data/models/app_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/events/data/models/app_event.dart -------------------------------------------------------------------------------- /lib/features/events/data/services/event_firestore_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/events/data/services/event_firestore_service.dart -------------------------------------------------------------------------------- /lib/features/events/presentation/pages/add_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/events/presentation/pages/add_event.dart -------------------------------------------------------------------------------- /lib/features/events/presentation/pages/event_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/events/presentation/pages/event_details.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/pages/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/home/presentation/pages/home.dart -------------------------------------------------------------------------------- /lib/features/notification/data/service/push_notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/notification/data/service/push_notification_service.dart -------------------------------------------------------------------------------- /lib/features/onboarding/presentation/pages/intro.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/onboarding/presentation/pages/intro.dart -------------------------------------------------------------------------------- /lib/features/profile/data/model/device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/data/model/device.dart -------------------------------------------------------------------------------- /lib/features/profile/data/model/device_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/data/model/device_field.dart -------------------------------------------------------------------------------- /lib/features/profile/data/model/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/data/model/user.dart -------------------------------------------------------------------------------- /lib/features/profile/data/model/user_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/data/model/user_field.dart -------------------------------------------------------------------------------- /lib/features/profile/data/service/user_db_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/data/service/user_db_service.dart -------------------------------------------------------------------------------- /lib/features/profile/presentation/pages/edit_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/presentation/pages/edit_profile.dart -------------------------------------------------------------------------------- /lib/features/profile/presentation/pages/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/presentation/pages/profile.dart -------------------------------------------------------------------------------- /lib/features/profile/presentation/widgets/avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/features/profile/presentation/widgets/avatar.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/generated/intl/messages_all.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/generated/intl/messages_en.dart -------------------------------------------------------------------------------- /lib/generated/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/generated/l10n.dart -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/main_prod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/lib/main_prod.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lohanidamodar/flutter_events_2021/HEAD/test/widget_test.dart --------------------------------------------------------------------------------