├── LICENSE ├── README.md ├── fastlane └── metadata │ └── android │ └── en-US │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ └── 05.png │ └── short_description.txt ├── notes ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── notes │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-ldpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── lib │ ├── main.dart │ ├── model │ │ ├── note │ │ │ ├── checklist.dart │ │ │ ├── checklist_element.dart │ │ │ ├── checklist_group.dart │ │ │ ├── note.dart │ │ │ ├── notifier │ │ │ │ ├── checklist_list.dart │ │ │ │ └── main_list.dart │ │ │ └── plaintext.dart │ │ └── storage │ │ │ ├── local_db.dart │ │ │ ├── note_id_generator.dart │ │ │ ├── notes_order.dart │ │ │ └── parse_result.dart │ ├── screen │ │ ├── checklist.dart │ │ ├── loading.dart │ │ ├── main.dart │ │ ├── plaintext.dart │ │ └── settings.dart │ ├── theme │ │ ├── app_theme.dart │ │ └── themes.dart │ ├── util │ │ ├── app_info.dart │ │ └── app_values.dart │ └── widget │ │ ├── checklist_group_tile.dart │ │ ├── checklist_tile.dart │ │ ├── dimsissible_notes.dart │ │ ├── dismissible_checklist.dart │ │ ├── note_tile.dart │ │ ├── sunken_toolbar.dart │ │ └── theme_tile.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart └── resources └── readme_imgs ├── IzzyOnDroid.png └── v3-1-0 ├── checklist.png ├── homescreen.png ├── homescreen_empty.png ├── plaintext.png └── settings.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/README.md -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/01.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/02.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/03.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/04.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/05.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | a simple app for taking notes -------------------------------------------------------------------------------- /notes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/.gitignore -------------------------------------------------------------------------------- /notes/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/.metadata -------------------------------------------------------------------------------- /notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/README.md -------------------------------------------------------------------------------- /notes/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/analysis_options.yaml -------------------------------------------------------------------------------- /notes/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/.gitignore -------------------------------------------------------------------------------- /notes/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/build.gradle -------------------------------------------------------------------------------- /notes/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/kotlin/com/example/notes/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/kotlin/com/example/notes/MainActivity.kt -------------------------------------------------------------------------------- /notes/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /notes/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /notes/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /notes/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /notes/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/build.gradle -------------------------------------------------------------------------------- /notes/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/gradle.properties -------------------------------------------------------------------------------- /notes/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /notes/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/android/settings.gradle -------------------------------------------------------------------------------- /notes/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/main.dart -------------------------------------------------------------------------------- /notes/lib/model/note/checklist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/checklist.dart -------------------------------------------------------------------------------- /notes/lib/model/note/checklist_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/checklist_element.dart -------------------------------------------------------------------------------- /notes/lib/model/note/checklist_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/checklist_group.dart -------------------------------------------------------------------------------- /notes/lib/model/note/note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/note.dart -------------------------------------------------------------------------------- /notes/lib/model/note/notifier/checklist_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/notifier/checklist_list.dart -------------------------------------------------------------------------------- /notes/lib/model/note/notifier/main_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/notifier/main_list.dart -------------------------------------------------------------------------------- /notes/lib/model/note/plaintext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/note/plaintext.dart -------------------------------------------------------------------------------- /notes/lib/model/storage/local_db.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/storage/local_db.dart -------------------------------------------------------------------------------- /notes/lib/model/storage/note_id_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/storage/note_id_generator.dart -------------------------------------------------------------------------------- /notes/lib/model/storage/notes_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/storage/notes_order.dart -------------------------------------------------------------------------------- /notes/lib/model/storage/parse_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/model/storage/parse_result.dart -------------------------------------------------------------------------------- /notes/lib/screen/checklist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/screen/checklist.dart -------------------------------------------------------------------------------- /notes/lib/screen/loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/screen/loading.dart -------------------------------------------------------------------------------- /notes/lib/screen/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/screen/main.dart -------------------------------------------------------------------------------- /notes/lib/screen/plaintext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/screen/plaintext.dart -------------------------------------------------------------------------------- /notes/lib/screen/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/screen/settings.dart -------------------------------------------------------------------------------- /notes/lib/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/theme/app_theme.dart -------------------------------------------------------------------------------- /notes/lib/theme/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/theme/themes.dart -------------------------------------------------------------------------------- /notes/lib/util/app_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/util/app_info.dart -------------------------------------------------------------------------------- /notes/lib/util/app_values.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/util/app_values.dart -------------------------------------------------------------------------------- /notes/lib/widget/checklist_group_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/checklist_group_tile.dart -------------------------------------------------------------------------------- /notes/lib/widget/checklist_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/checklist_tile.dart -------------------------------------------------------------------------------- /notes/lib/widget/dimsissible_notes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/dimsissible_notes.dart -------------------------------------------------------------------------------- /notes/lib/widget/dismissible_checklist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/dismissible_checklist.dart -------------------------------------------------------------------------------- /notes/lib/widget/note_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/note_tile.dart -------------------------------------------------------------------------------- /notes/lib/widget/sunken_toolbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/sunken_toolbar.dart -------------------------------------------------------------------------------- /notes/lib/widget/theme_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/lib/widget/theme_tile.dart -------------------------------------------------------------------------------- /notes/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/pubspec.lock -------------------------------------------------------------------------------- /notes/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/pubspec.yaml -------------------------------------------------------------------------------- /notes/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/notes/test/widget_test.dart -------------------------------------------------------------------------------- /resources/readme_imgs/IzzyOnDroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/resources/readme_imgs/IzzyOnDroid.png -------------------------------------------------------------------------------- /resources/readme_imgs/v3-1-0/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/resources/readme_imgs/v3-1-0/checklist.png -------------------------------------------------------------------------------- /resources/readme_imgs/v3-1-0/homescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/resources/readme_imgs/v3-1-0/homescreen.png -------------------------------------------------------------------------------- /resources/readme_imgs/v3-1-0/homescreen_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/resources/readme_imgs/v3-1-0/homescreen_empty.png -------------------------------------------------------------------------------- /resources/readme_imgs/v3-1-0/plaintext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/resources/readme_imgs/v3-1-0/plaintext.png -------------------------------------------------------------------------------- /resources/readme_imgs/v3-1-0/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovati/noteapp/HEAD/resources/readme_imgs/v3-1-0/settings.png --------------------------------------------------------------------------------