├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── rem │ │ │ │ └── reminds │ │ │ │ └── you │ │ │ │ ├── AlarmService.kt │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_stat_reminder.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_stat_reminder.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ └── ic_stat_reminder.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_stat_reminder.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_stat_reminder.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ ├── raw │ │ │ └── res_default_sound.wav │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── icons │ └── icon.png ├── lib ├── app.dart ├── core │ ├── constants │ │ └── const_strings.dart │ ├── data │ │ ├── entities │ │ │ ├── no_rush_entitiy │ │ │ │ └── no_rush_entity.dart │ │ │ └── reminder_entitiy │ │ │ │ └── reminder_entity.dart │ │ └── models │ │ │ ├── no_rush_reminder │ │ │ └── no_rush_reminder.dart │ │ │ ├── recurring_interval │ │ │ └── recurring_interval.dart │ │ │ ├── reminder │ │ │ └── reminder.dart │ │ │ └── reminder_base │ │ │ └── reminder_base.dart │ ├── enums │ │ ├── files_n_folders.dart │ │ ├── storage_enums.dart │ │ └── swipe_actions.dart │ ├── extensions │ │ ├── datetime_ext.dart │ │ ├── duration_ext.dart │ │ └── shared_prefs_ext.dart │ ├── providers │ │ ├── generated │ │ │ └── global_providers.g.dart │ │ └── global_providers.dart │ ├── services │ │ └── notification_service │ │ │ ├── notif_permi_rationale.dart │ │ │ ├── notification_action_handler.dart │ │ │ └── notification_service.dart │ └── theme │ │ ├── color_schemes.dart │ │ └── theme.dart ├── feature │ ├── app_startup │ │ └── presentation │ │ │ ├── providers │ │ │ ├── app_startup_provider.dart │ │ │ ├── generated │ │ │ │ ├── app_startup_provider.g.dart │ │ │ │ └── initial_screen_provider.g.dart │ │ │ └── initial_screen_provider.dart │ │ │ ├── screens │ │ │ └── splash_screen.dart │ │ │ └── widgets │ │ │ ├── splash_error.dart │ │ │ └── splash_loader.dart │ ├── home │ │ ├── data │ │ │ └── repositories │ │ │ │ ├── generated │ │ │ │ └── reminders_repo.g.dart │ │ │ │ └── reminders_repo.dart │ │ └── presentation │ │ │ ├── providers │ │ │ ├── generated │ │ │ │ ├── no_rush_provider.g.dart │ │ │ │ └── reminders_provider.g.dart │ │ │ ├── no_rush_provider.dart │ │ │ └── reminders_provider.dart │ │ │ ├── screens │ │ │ └── home_screen.dart │ │ │ └── widgets │ │ │ ├── action_pane_manager.dart │ │ │ ├── home_screen_lists.dart │ │ │ └── reminder_tile.dart │ ├── permissions │ │ ├── domain │ │ │ └── app_permi_handler.dart │ │ └── presentation │ │ │ └── screens │ │ │ └── permissions_screen.dart │ ├── reminder_sheet │ │ └── presentation │ │ │ ├── providers │ │ │ ├── central_widget_provider.dart │ │ │ ├── generated │ │ │ │ └── central_widget_provider.g.dart │ │ │ └── sheet_reminder_notifier.dart │ │ │ ├── sheet │ │ │ └── reminder_sheet.dart │ │ │ ├── sheet_helper.dart │ │ │ └── widgets │ │ │ ├── base_versions │ │ │ └── alert_dialog_base.dart │ │ │ ├── bottom_buttons.dart │ │ │ ├── central_elements │ │ │ ├── recurrence_options.dart │ │ │ └── snooze_options.dart │ │ │ ├── central_section.dart │ │ │ ├── time_button.dart │ │ │ ├── title_field.dart │ │ │ ├── title_parser │ │ │ └── title_parser.dart │ │ │ └── top_buttons.dart │ └── settings │ │ └── presentation │ │ ├── providers │ │ ├── default_settings.dart │ │ └── settings_provider.dart │ │ ├── screens │ │ └── settings_screen.dart │ │ └── widgets │ │ └── sections │ │ ├── backup_restore_section │ │ └── backup_restore_section.dart │ │ ├── gestures_section │ │ └── gestures_section.dart │ │ ├── logs │ │ └── logs_section.dart │ │ ├── new_reminder_settings │ │ ├── default_auto_snooze_duration_modal.dart │ │ ├── default_lead_duration_modal.dart │ │ ├── new_reminder_section.dart │ │ ├── quick_time_table_modal.dart │ │ └── snooze_options_modal.dart │ │ ├── other_section │ │ └── other_section.dart │ │ └── user_preferences_section │ │ ├── no_rush_hours_sheet.dart │ │ ├── swipe_to_left_action_sheet.dart │ │ ├── swipe_to_right_action_sheet.dart │ │ └── user_pref_settings.dart ├── main.dart ├── objectbox-model.json ├── objectbox.g.dart ├── router │ ├── app_routes.dart │ └── route_builder.dart └── shared │ ├── utils │ ├── extensions │ │ ├── string_ext.dart │ │ └── theme_mode.dart │ ├── id_handler.dart │ ├── logger │ │ ├── app_console_output.dart │ │ ├── global_logger.dart │ │ └── logs_manager.dart │ └── misc_methods.dart │ └── widgets │ ├── dhm_single_duration_picker.dart │ ├── hm_duration_picker.dart │ ├── one_time_undo_button │ └── one_time_undo_button.dart │ ├── riverpod │ └── async_widget.dart │ ├── save_close_buttons.dart │ ├── snack_bar │ └── custom_snack_bar.dart │ └── whats_new_dialog │ └── whats_new_dialog.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── image_1.png ├── image_2.png └── image_3.png └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/rem/reminds/you/AlarmService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/kotlin/rem/reminds/you/AlarmService.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/rem/reminds/you/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/kotlin/rem/reminds/you/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_stat_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable-hdpi/ic_stat_reminder.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_stat_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable-mdpi/ic_stat_reminder.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_stat_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable-xhdpi/ic_stat_reminder.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_stat_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_stat_reminder.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_stat_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_stat_reminder.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/res_default_sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/raw/res_default_sound.wav -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/assets/icons/icon.png -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/core/constants/const_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/constants/const_strings.dart -------------------------------------------------------------------------------- /lib/core/data/entities/no_rush_entitiy/no_rush_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/data/entities/no_rush_entitiy/no_rush_entity.dart -------------------------------------------------------------------------------- /lib/core/data/entities/reminder_entitiy/reminder_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/data/entities/reminder_entitiy/reminder_entity.dart -------------------------------------------------------------------------------- /lib/core/data/models/no_rush_reminder/no_rush_reminder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/data/models/no_rush_reminder/no_rush_reminder.dart -------------------------------------------------------------------------------- /lib/core/data/models/recurring_interval/recurring_interval.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/data/models/recurring_interval/recurring_interval.dart -------------------------------------------------------------------------------- /lib/core/data/models/reminder/reminder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/data/models/reminder/reminder.dart -------------------------------------------------------------------------------- /lib/core/data/models/reminder_base/reminder_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/data/models/reminder_base/reminder_base.dart -------------------------------------------------------------------------------- /lib/core/enums/files_n_folders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/enums/files_n_folders.dart -------------------------------------------------------------------------------- /lib/core/enums/storage_enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/enums/storage_enums.dart -------------------------------------------------------------------------------- /lib/core/enums/swipe_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/enums/swipe_actions.dart -------------------------------------------------------------------------------- /lib/core/extensions/datetime_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/extensions/datetime_ext.dart -------------------------------------------------------------------------------- /lib/core/extensions/duration_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/extensions/duration_ext.dart -------------------------------------------------------------------------------- /lib/core/extensions/shared_prefs_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/extensions/shared_prefs_ext.dart -------------------------------------------------------------------------------- /lib/core/providers/generated/global_providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/providers/generated/global_providers.g.dart -------------------------------------------------------------------------------- /lib/core/providers/global_providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/providers/global_providers.dart -------------------------------------------------------------------------------- /lib/core/services/notification_service/notif_permi_rationale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/services/notification_service/notif_permi_rationale.dart -------------------------------------------------------------------------------- /lib/core/services/notification_service/notification_action_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/services/notification_service/notification_action_handler.dart -------------------------------------------------------------------------------- /lib/core/services/notification_service/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/services/notification_service/notification_service.dart -------------------------------------------------------------------------------- /lib/core/theme/color_schemes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/theme/color_schemes.dart -------------------------------------------------------------------------------- /lib/core/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/core/theme/theme.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/providers/app_startup_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/providers/app_startup_provider.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/providers/generated/app_startup_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/providers/generated/app_startup_provider.g.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/providers/generated/initial_screen_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/providers/generated/initial_screen_provider.g.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/providers/initial_screen_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/providers/initial_screen_provider.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/screens/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/screens/splash_screen.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/widgets/splash_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/widgets/splash_error.dart -------------------------------------------------------------------------------- /lib/feature/app_startup/presentation/widgets/splash_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/app_startup/presentation/widgets/splash_loader.dart -------------------------------------------------------------------------------- /lib/feature/home/data/repositories/generated/reminders_repo.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/data/repositories/generated/reminders_repo.g.dart -------------------------------------------------------------------------------- /lib/feature/home/data/repositories/reminders_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/data/repositories/reminders_repo.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/providers/generated/no_rush_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/providers/generated/no_rush_provider.g.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/providers/generated/reminders_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/providers/generated/reminders_provider.g.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/providers/no_rush_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/providers/no_rush_provider.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/providers/reminders_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/providers/reminders_provider.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/widgets/action_pane_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/widgets/action_pane_manager.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/widgets/home_screen_lists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/widgets/home_screen_lists.dart -------------------------------------------------------------------------------- /lib/feature/home/presentation/widgets/reminder_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/home/presentation/widgets/reminder_tile.dart -------------------------------------------------------------------------------- /lib/feature/permissions/domain/app_permi_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/permissions/domain/app_permi_handler.dart -------------------------------------------------------------------------------- /lib/feature/permissions/presentation/screens/permissions_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/permissions/presentation/screens/permissions_screen.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/providers/central_widget_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/providers/central_widget_provider.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/providers/generated/central_widget_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/providers/generated/central_widget_provider.g.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/providers/sheet_reminder_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/providers/sheet_reminder_notifier.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/sheet/reminder_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/sheet/reminder_sheet.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/sheet_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/sheet_helper.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/base_versions/alert_dialog_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/base_versions/alert_dialog_base.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/bottom_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/bottom_buttons.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/central_elements/recurrence_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/central_elements/recurrence_options.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/central_elements/snooze_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/central_elements/snooze_options.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/central_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/central_section.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/time_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/time_button.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/title_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/title_field.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/title_parser/title_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/title_parser/title_parser.dart -------------------------------------------------------------------------------- /lib/feature/reminder_sheet/presentation/widgets/top_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/reminder_sheet/presentation/widgets/top_buttons.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/providers/default_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/providers/default_settings.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/providers/settings_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/providers/settings_provider.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/screens/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/screens/settings_screen.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/backup_restore_section/backup_restore_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/backup_restore_section/backup_restore_section.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/gestures_section/gestures_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/gestures_section/gestures_section.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/logs/logs_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/logs/logs_section.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/new_reminder_settings/default_auto_snooze_duration_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/new_reminder_settings/default_auto_snooze_duration_modal.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/new_reminder_settings/default_lead_duration_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/new_reminder_settings/default_lead_duration_modal.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/new_reminder_settings/new_reminder_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/new_reminder_settings/new_reminder_section.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/new_reminder_settings/quick_time_table_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/new_reminder_settings/quick_time_table_modal.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/new_reminder_settings/snooze_options_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/new_reminder_settings/snooze_options_modal.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/other_section/other_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/other_section/other_section.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/user_preferences_section/no_rush_hours_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/user_preferences_section/no_rush_hours_sheet.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/user_preferences_section/swipe_to_left_action_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/user_preferences_section/swipe_to_left_action_sheet.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/user_preferences_section/swipe_to_right_action_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/user_preferences_section/swipe_to_right_action_sheet.dart -------------------------------------------------------------------------------- /lib/feature/settings/presentation/widgets/sections/user_preferences_section/user_pref_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/feature/settings/presentation/widgets/sections/user_preferences_section/user_pref_settings.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/objectbox-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/objectbox-model.json -------------------------------------------------------------------------------- /lib/objectbox.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/objectbox.g.dart -------------------------------------------------------------------------------- /lib/router/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/router/app_routes.dart -------------------------------------------------------------------------------- /lib/router/route_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/router/route_builder.dart -------------------------------------------------------------------------------- /lib/shared/utils/extensions/string_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/extensions/string_ext.dart -------------------------------------------------------------------------------- /lib/shared/utils/extensions/theme_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/extensions/theme_mode.dart -------------------------------------------------------------------------------- /lib/shared/utils/id_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/id_handler.dart -------------------------------------------------------------------------------- /lib/shared/utils/logger/app_console_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/logger/app_console_output.dart -------------------------------------------------------------------------------- /lib/shared/utils/logger/global_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/logger/global_logger.dart -------------------------------------------------------------------------------- /lib/shared/utils/logger/logs_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/logger/logs_manager.dart -------------------------------------------------------------------------------- /lib/shared/utils/misc_methods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/utils/misc_methods.dart -------------------------------------------------------------------------------- /lib/shared/widgets/dhm_single_duration_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/dhm_single_duration_picker.dart -------------------------------------------------------------------------------- /lib/shared/widgets/hm_duration_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/hm_duration_picker.dart -------------------------------------------------------------------------------- /lib/shared/widgets/one_time_undo_button/one_time_undo_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/one_time_undo_button/one_time_undo_button.dart -------------------------------------------------------------------------------- /lib/shared/widgets/riverpod/async_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/riverpod/async_widget.dart -------------------------------------------------------------------------------- /lib/shared/widgets/save_close_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/save_close_buttons.dart -------------------------------------------------------------------------------- /lib/shared/widgets/snack_bar/custom_snack_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/snack_bar/custom_snack_bar.dart -------------------------------------------------------------------------------- /lib/shared/widgets/whats_new_dialog/whats_new_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/lib/shared/widgets/whats_new_dialog/whats_new_dialog.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/screenshots/image_1.png -------------------------------------------------------------------------------- /screenshots/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/screenshots/image_2.png -------------------------------------------------------------------------------- /screenshots/image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/screenshots/image_3.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIsSidam/rem-reminds-you/HEAD/test/widget_test.dart --------------------------------------------------------------------------------