├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── sushi │ │ │ │ └── nothing_clock │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── sounds │ └── alarm.mp3 ├── devtools_options.yaml ├── lib ├── assets │ └── map │ │ ├── data │ │ └── countries_coords.json │ │ └── map.svg ├── fonts │ ├── NDot.ttf │ ├── Roboto-Regular.ttf │ └── Roboto-Thin.ttf ├── main.dart ├── models │ ├── alarm.dart │ ├── alarm.g.dart │ ├── timezone_data.dart │ ├── user_position.dart │ └── world_clock_data.dart ├── providers │ ├── clock_provider.dart │ ├── page_provider.dart │ ├── stopwatch_provider.dart │ ├── theme_provider.dart │ ├── timer_provider.dart │ └── worldclocks_provider.dart ├── screens │ ├── alarms_screen.dart │ ├── city_search_screen.dart │ ├── clock_screen.dart │ ├── router.dart │ ├── settings_screen.dart │ ├── stopwatch_screen.dart │ └── timer_screen.dart ├── services │ ├── alarm │ │ └── alarm_storage.dart │ ├── alarms_service.dart │ ├── dot_map_converter.dart │ ├── location_manager.dart │ ├── notification_service.dart │ ├── permission_manager.dart │ └── time_country.dart ├── theme │ └── theme.dart ├── view_models │ └── alarms_view_model.dart └── widgets │ ├── alarms │ ├── alarm_form_bottom_sheet.dart │ ├── alarm_grid.dart │ ├── day_selector.dart │ └── sleep_alarm_block.dart │ ├── clock_stream_widget.dart │ ├── drawer_popup.dart │ ├── exact_alarm_request_popup.dart │ ├── info_display_clock.dart │ ├── stopwatch_btn_controller.dart │ ├── switch_button.dart │ ├── time_zone_clock.dart │ ├── top_bar.dart │ └── world_map.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/sushi/nothing_clock/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/kotlin/com/sushi/nothing_clock/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/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/SushiiReboot/Nothing-Clock/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/SushiiReboot/Nothing-Clock/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/SushiiReboot/Nothing-Clock/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/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/sounds/alarm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/assets/sounds/alarm.mp3 -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /lib/assets/map/data/countries_coords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/assets/map/data/countries_coords.json -------------------------------------------------------------------------------- /lib/assets/map/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/assets/map/map.svg -------------------------------------------------------------------------------- /lib/fonts/NDot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/fonts/NDot.ttf -------------------------------------------------------------------------------- /lib/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/alarm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/models/alarm.dart -------------------------------------------------------------------------------- /lib/models/alarm.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/models/alarm.g.dart -------------------------------------------------------------------------------- /lib/models/timezone_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/models/timezone_data.dart -------------------------------------------------------------------------------- /lib/models/user_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/models/user_position.dart -------------------------------------------------------------------------------- /lib/models/world_clock_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/models/world_clock_data.dart -------------------------------------------------------------------------------- /lib/providers/clock_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/providers/clock_provider.dart -------------------------------------------------------------------------------- /lib/providers/page_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/providers/page_provider.dart -------------------------------------------------------------------------------- /lib/providers/stopwatch_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/providers/stopwatch_provider.dart -------------------------------------------------------------------------------- /lib/providers/theme_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/providers/theme_provider.dart -------------------------------------------------------------------------------- /lib/providers/timer_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/providers/timer_provider.dart -------------------------------------------------------------------------------- /lib/providers/worldclocks_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/providers/worldclocks_provider.dart -------------------------------------------------------------------------------- /lib/screens/alarms_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/alarms_screen.dart -------------------------------------------------------------------------------- /lib/screens/city_search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/city_search_screen.dart -------------------------------------------------------------------------------- /lib/screens/clock_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/clock_screen.dart -------------------------------------------------------------------------------- /lib/screens/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/router.dart -------------------------------------------------------------------------------- /lib/screens/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/stopwatch_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/stopwatch_screen.dart -------------------------------------------------------------------------------- /lib/screens/timer_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/screens/timer_screen.dart -------------------------------------------------------------------------------- /lib/services/alarm/alarm_storage.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/services/alarms_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/services/alarms_service.dart -------------------------------------------------------------------------------- /lib/services/dot_map_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/services/dot_map_converter.dart -------------------------------------------------------------------------------- /lib/services/location_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/services/location_manager.dart -------------------------------------------------------------------------------- /lib/services/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/services/notification_service.dart -------------------------------------------------------------------------------- /lib/services/permission_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/services/permission_manager.dart -------------------------------------------------------------------------------- /lib/services/time_country.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/services/time_country.dart -------------------------------------------------------------------------------- /lib/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/theme/theme.dart -------------------------------------------------------------------------------- /lib/view_models/alarms_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/view_models/alarms_view_model.dart -------------------------------------------------------------------------------- /lib/widgets/alarms/alarm_form_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/alarms/alarm_form_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/widgets/alarms/alarm_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/alarms/alarm_grid.dart -------------------------------------------------------------------------------- /lib/widgets/alarms/day_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/alarms/day_selector.dart -------------------------------------------------------------------------------- /lib/widgets/alarms/sleep_alarm_block.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/alarms/sleep_alarm_block.dart -------------------------------------------------------------------------------- /lib/widgets/clock_stream_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/clock_stream_widget.dart -------------------------------------------------------------------------------- /lib/widgets/drawer_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/drawer_popup.dart -------------------------------------------------------------------------------- /lib/widgets/exact_alarm_request_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/exact_alarm_request_popup.dart -------------------------------------------------------------------------------- /lib/widgets/info_display_clock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/info_display_clock.dart -------------------------------------------------------------------------------- /lib/widgets/stopwatch_btn_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/stopwatch_btn_controller.dart -------------------------------------------------------------------------------- /lib/widgets/switch_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/switch_button.dart -------------------------------------------------------------------------------- /lib/widgets/time_zone_clock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/time_zone_clock.dart -------------------------------------------------------------------------------- /lib/widgets/top_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/top_bar.dart -------------------------------------------------------------------------------- /lib/widgets/world_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/lib/widgets/world_map.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushiiReboot/Nothing-Clock/HEAD/test/widget_test.dart --------------------------------------------------------------------------------