├── .github ├── dependabot.yml └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── .metadata ├── .pre-commit-config.yaml ├── .yamlfmt ├── CHANGELOG.md ├── Caddyfile ├── Dockerfile_fdroid ├── LICENSE ├── Makefile ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── de │ │ │ │ └── tnmgl │ │ │ │ └── ntodotxt │ │ │ │ └── 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 └── icon │ └── icon.png ├── docker-compose.yaml ├── emulatorctl ├── fonts ├── LICENSE ├── OpenSans-Italic-VariableFont_wdth,wght.ttf └── OpenSans-VariableFont_wdth,wght.ttf ├── integration_test ├── login │ └── login_integration_test.dart ├── preview_app_integration_test.dart ├── screenshot_integration_test.dart └── webdav │ └── client │ └── webdav_client_test.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── adaptive_layout │ └── widget │ │ └── adaptive_layout.dart ├── app_info │ └── page │ │ └── app_details_page.dart ├── common │ ├── bloc_observer.dart │ ├── constants │ │ └── app.dart │ ├── exception │ │ └── exceptions.dart │ ├── misc.dart │ ├── router │ │ └── router.dart │ ├── theme │ │ └── theme.dart │ └── widget │ │ ├── app_bar.dart │ │ ├── chip.dart │ │ ├── confirm_dialog.dart │ │ ├── contexts_dialog.dart │ │ ├── date_picker.dart │ │ ├── filter_dialog.dart │ │ ├── group_by_dialog.dart │ │ ├── info_dialog.dart │ │ ├── input_dialog.dart │ │ ├── key_values_dialog.dart │ │ ├── order_dialog.dart │ │ ├── priorities_dialog.dart │ │ ├── projects_dialog.dart │ │ ├── scroll_to_top.dart │ │ └── tag_dialog.dart ├── database │ └── controller │ │ └── database.dart ├── drawer │ ├── state │ │ ├── drawer_cubit.dart │ │ └── drawer_state.dart │ └── widget │ │ └── drawer.dart ├── filter │ ├── controller │ │ ├── fake_filter_controller.dart │ │ └── filter_controller.dart │ ├── model │ │ └── filter_model.dart │ ├── page │ │ ├── filter_create_edit_page.dart │ │ └── filter_list_page.dart │ ├── repository │ │ └── filter_repository.dart │ ├── state │ │ ├── filter_cubit.dart │ │ ├── filter_list_bloc.dart │ │ ├── filter_list_event.dart │ │ ├── filter_list_state.dart │ │ └── filter_state.dart │ └── widget │ │ └── filter_chip.dart ├── intro │ └── page │ │ └── intro_page.dart ├── licenses │ └── page │ │ └── licenses_page.dart ├── login │ ├── page │ │ └── login_page.dart │ └── state │ │ ├── login_cubit.dart │ │ └── login_state.dart ├── main.dart ├── oss_licenses.dart ├── setting │ ├── controller │ │ ├── fake_setting_controller.dart │ │ └── setting_controller.dart │ ├── model │ │ └── setting_model.dart │ ├── page │ │ └── settings_page.dart │ └── repository │ │ └── setting_repository.dart ├── todo │ ├── api │ │ └── todo_list_api.dart │ ├── model │ │ └── todo_model.dart │ ├── page │ │ ├── todo_create_edit_page.dart │ │ ├── todo_list_page.dart │ │ └── todo_search_page.dart │ ├── repository │ │ └── todo_list_repository.dart │ └── state │ │ ├── todo_cubit.dart │ │ ├── todo_list_bloc.dart │ │ ├── todo_list_event.dart │ │ ├── todo_list_state.dart │ │ └── todo_state.dart ├── todo_file │ └── state │ │ ├── todo_file_cubit.dart │ │ └── todo_file_state.dart └── webdav │ └── client │ └── webdav_client.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── metadata └── en-US │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── short_description.txt │ └── title.txt ├── ntodotxt.yaml ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── phone │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png └── preview │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── test ├── common │ └── widget │ │ ├── confirm_dialog_test.dart │ │ ├── contexts_dialog_test.dart │ │ ├── default_filter_state_filter_dialog_test.dart │ │ ├── default_filter_state_group_dialog_test.dart │ │ ├── default_filter_state_order_dialog_test.dart │ │ ├── filter_state_filter_dialog_test.dart │ │ ├── filter_state_group_dialog_test.dart │ │ ├── filter_state_order_dialog_test.dart │ │ ├── info_dialog_test.dart │ │ ├── input_dialog_test.dart │ │ ├── key_values_dialog_test.dart │ │ ├── priorities_dialog_test.dart │ │ └── projects_dialog_test.dart ├── drawer │ └── state │ │ └── drawer_cubit_test.dart ├── filter │ ├── controller │ │ └── filter_controller_test.dart │ ├── page │ │ ├── filter_create_edit_page_test.dart │ │ └── filter_list_page_test.dart │ ├── state │ │ └── filter_cubit_test.dart │ └── widget │ │ └── filter_chip_test.dart ├── login │ └── page │ │ └── webdav_login_view_test.dart ├── setting │ ├── controller │ │ └── setting_controller_test.dart │ └── page │ │ └── settings_page_test.dart ├── todo │ ├── api │ │ └── todo_list_api_test.dart │ ├── model │ │ └── todo_model_test.dart │ ├── page │ │ ├── todo_create_edit_page_test.dart │ │ └── todo_list_page_test.dart │ └── state │ │ ├── todo_cubit_test.dart │ │ └── todo_list_bloc_test.dart ├── todo_file │ └── state │ │ ├── todo_file_cubit_test.dart │ │ └── todo_file_state_test.dart └── webdav │ └── client │ └── webdav_client_test.dart ├── test_driver └── screenshot_integration_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.metadata -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamlfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/.yamlfmt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile_fdroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/Dockerfile_fdroid -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/de/tnmgl/ntodotxt/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/main/kotlin/de/tnmgl/ntodotxt/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/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/tmaegel/ntodotxt/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/tmaegel/ntodotxt/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/tmaegel/ntodotxt/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/tmaegel/ntodotxt/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/assets/icon/icon.png -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /emulatorctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/emulatorctl -------------------------------------------------------------------------------- /fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/fonts/LICENSE -------------------------------------------------------------------------------- /fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /fonts/OpenSans-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/fonts/OpenSans-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /integration_test/login/login_integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/integration_test/login/login_integration_test.dart -------------------------------------------------------------------------------- /integration_test/preview_app_integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/integration_test/preview_app_integration_test.dart -------------------------------------------------------------------------------- /integration_test/screenshot_integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/integration_test/screenshot_integration_test.dart -------------------------------------------------------------------------------- /integration_test/webdav/client/webdav_client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/integration_test/webdav/client/webdav_client_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/adaptive_layout/widget/adaptive_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/adaptive_layout/widget/adaptive_layout.dart -------------------------------------------------------------------------------- /lib/app_info/page/app_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/app_info/page/app_details_page.dart -------------------------------------------------------------------------------- /lib/common/bloc_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/bloc_observer.dart -------------------------------------------------------------------------------- /lib/common/constants/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/constants/app.dart -------------------------------------------------------------------------------- /lib/common/exception/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/exception/exceptions.dart -------------------------------------------------------------------------------- /lib/common/misc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/misc.dart -------------------------------------------------------------------------------- /lib/common/router/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/router/router.dart -------------------------------------------------------------------------------- /lib/common/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/theme/theme.dart -------------------------------------------------------------------------------- /lib/common/widget/app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/app_bar.dart -------------------------------------------------------------------------------- /lib/common/widget/chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/chip.dart -------------------------------------------------------------------------------- /lib/common/widget/confirm_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/confirm_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/contexts_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/contexts_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/date_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/date_picker.dart -------------------------------------------------------------------------------- /lib/common/widget/filter_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/filter_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/group_by_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/group_by_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/info_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/info_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/input_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/input_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/key_values_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/key_values_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/order_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/order_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/priorities_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/priorities_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/projects_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/projects_dialog.dart -------------------------------------------------------------------------------- /lib/common/widget/scroll_to_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/scroll_to_top.dart -------------------------------------------------------------------------------- /lib/common/widget/tag_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/common/widget/tag_dialog.dart -------------------------------------------------------------------------------- /lib/database/controller/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/database/controller/database.dart -------------------------------------------------------------------------------- /lib/drawer/state/drawer_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/drawer/state/drawer_cubit.dart -------------------------------------------------------------------------------- /lib/drawer/state/drawer_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/drawer/state/drawer_state.dart -------------------------------------------------------------------------------- /lib/drawer/widget/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/drawer/widget/drawer.dart -------------------------------------------------------------------------------- /lib/filter/controller/fake_filter_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/controller/fake_filter_controller.dart -------------------------------------------------------------------------------- /lib/filter/controller/filter_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/controller/filter_controller.dart -------------------------------------------------------------------------------- /lib/filter/model/filter_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/model/filter_model.dart -------------------------------------------------------------------------------- /lib/filter/page/filter_create_edit_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/page/filter_create_edit_page.dart -------------------------------------------------------------------------------- /lib/filter/page/filter_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/page/filter_list_page.dart -------------------------------------------------------------------------------- /lib/filter/repository/filter_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/repository/filter_repository.dart -------------------------------------------------------------------------------- /lib/filter/state/filter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/state/filter_cubit.dart -------------------------------------------------------------------------------- /lib/filter/state/filter_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/state/filter_list_bloc.dart -------------------------------------------------------------------------------- /lib/filter/state/filter_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/state/filter_list_event.dart -------------------------------------------------------------------------------- /lib/filter/state/filter_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/state/filter_list_state.dart -------------------------------------------------------------------------------- /lib/filter/state/filter_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/state/filter_state.dart -------------------------------------------------------------------------------- /lib/filter/widget/filter_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/filter/widget/filter_chip.dart -------------------------------------------------------------------------------- /lib/intro/page/intro_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/intro/page/intro_page.dart -------------------------------------------------------------------------------- /lib/licenses/page/licenses_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/licenses/page/licenses_page.dart -------------------------------------------------------------------------------- /lib/login/page/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/login/page/login_page.dart -------------------------------------------------------------------------------- /lib/login/state/login_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/login/state/login_cubit.dart -------------------------------------------------------------------------------- /lib/login/state/login_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/login/state/login_state.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/oss_licenses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/oss_licenses.dart -------------------------------------------------------------------------------- /lib/setting/controller/fake_setting_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/setting/controller/fake_setting_controller.dart -------------------------------------------------------------------------------- /lib/setting/controller/setting_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/setting/controller/setting_controller.dart -------------------------------------------------------------------------------- /lib/setting/model/setting_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/setting/model/setting_model.dart -------------------------------------------------------------------------------- /lib/setting/page/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/setting/page/settings_page.dart -------------------------------------------------------------------------------- /lib/setting/repository/setting_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/setting/repository/setting_repository.dart -------------------------------------------------------------------------------- /lib/todo/api/todo_list_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/api/todo_list_api.dart -------------------------------------------------------------------------------- /lib/todo/model/todo_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/model/todo_model.dart -------------------------------------------------------------------------------- /lib/todo/page/todo_create_edit_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/page/todo_create_edit_page.dart -------------------------------------------------------------------------------- /lib/todo/page/todo_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/page/todo_list_page.dart -------------------------------------------------------------------------------- /lib/todo/page/todo_search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/page/todo_search_page.dart -------------------------------------------------------------------------------- /lib/todo/repository/todo_list_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/repository/todo_list_repository.dart -------------------------------------------------------------------------------- /lib/todo/state/todo_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/state/todo_cubit.dart -------------------------------------------------------------------------------- /lib/todo/state/todo_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/state/todo_list_bloc.dart -------------------------------------------------------------------------------- /lib/todo/state/todo_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/state/todo_list_event.dart -------------------------------------------------------------------------------- /lib/todo/state/todo_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/state/todo_list_state.dart -------------------------------------------------------------------------------- /lib/todo/state/todo_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo/state/todo_state.dart -------------------------------------------------------------------------------- /lib/todo_file/state/todo_file_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo_file/state/todo_file_cubit.dart -------------------------------------------------------------------------------- /lib/todo_file/state/todo_file_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/todo_file/state/todo_file_state.dart -------------------------------------------------------------------------------- /lib/webdav/client/webdav_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/lib/webdav/client/webdav_client.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/metadata/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- 1 | ../../../assets/icon/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- 1 | ../../../../screenshots/preview/1.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- 1 | ../../../../screenshots/preview/2.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- 1 | ../../../../screenshots/preview/3.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- 1 | ../../../../screenshots/preview/4.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- 1 | ../../../../screenshots/preview/5.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | ntodotxt 2 | -------------------------------------------------------------------------------- /ntodotxt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/ntodotxt.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/phone/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/phone/1.png -------------------------------------------------------------------------------- /screenshots/phone/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/phone/2.png -------------------------------------------------------------------------------- /screenshots/phone/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/phone/3.png -------------------------------------------------------------------------------- /screenshots/phone/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/phone/4.png -------------------------------------------------------------------------------- /screenshots/phone/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/phone/5.png -------------------------------------------------------------------------------- /screenshots/preview/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/preview/1.png -------------------------------------------------------------------------------- /screenshots/preview/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/preview/2.png -------------------------------------------------------------------------------- /screenshots/preview/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/preview/3.png -------------------------------------------------------------------------------- /screenshots/preview/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/preview/4.png -------------------------------------------------------------------------------- /screenshots/preview/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/screenshots/preview/5.png -------------------------------------------------------------------------------- /test/common/widget/confirm_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/confirm_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/contexts_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/contexts_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/default_filter_state_filter_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/default_filter_state_filter_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/default_filter_state_group_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/default_filter_state_group_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/default_filter_state_order_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/default_filter_state_order_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/filter_state_filter_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/filter_state_filter_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/filter_state_group_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/filter_state_group_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/filter_state_order_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/filter_state_order_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/info_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/info_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/input_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/input_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/key_values_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/key_values_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/priorities_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/priorities_dialog_test.dart -------------------------------------------------------------------------------- /test/common/widget/projects_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/common/widget/projects_dialog_test.dart -------------------------------------------------------------------------------- /test/drawer/state/drawer_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/drawer/state/drawer_cubit_test.dart -------------------------------------------------------------------------------- /test/filter/controller/filter_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/filter/controller/filter_controller_test.dart -------------------------------------------------------------------------------- /test/filter/page/filter_create_edit_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/filter/page/filter_create_edit_page_test.dart -------------------------------------------------------------------------------- /test/filter/page/filter_list_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/filter/page/filter_list_page_test.dart -------------------------------------------------------------------------------- /test/filter/state/filter_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/filter/state/filter_cubit_test.dart -------------------------------------------------------------------------------- /test/filter/widget/filter_chip_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/filter/widget/filter_chip_test.dart -------------------------------------------------------------------------------- /test/login/page/webdav_login_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/login/page/webdav_login_view_test.dart -------------------------------------------------------------------------------- /test/setting/controller/setting_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/setting/controller/setting_controller_test.dart -------------------------------------------------------------------------------- /test/setting/page/settings_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/setting/page/settings_page_test.dart -------------------------------------------------------------------------------- /test/todo/api/todo_list_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo/api/todo_list_api_test.dart -------------------------------------------------------------------------------- /test/todo/model/todo_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo/model/todo_model_test.dart -------------------------------------------------------------------------------- /test/todo/page/todo_create_edit_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo/page/todo_create_edit_page_test.dart -------------------------------------------------------------------------------- /test/todo/page/todo_list_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo/page/todo_list_page_test.dart -------------------------------------------------------------------------------- /test/todo/state/todo_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo/state/todo_cubit_test.dart -------------------------------------------------------------------------------- /test/todo/state/todo_list_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo/state/todo_list_bloc_test.dart -------------------------------------------------------------------------------- /test/todo_file/state/todo_file_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo_file/state/todo_file_cubit_test.dart -------------------------------------------------------------------------------- /test/todo_file/state/todo_file_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/todo_file/state/todo_file_state_test.dart -------------------------------------------------------------------------------- /test/webdav/client/webdav_client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test/webdav/client/webdav_client_test.dart -------------------------------------------------------------------------------- /test_driver/screenshot_integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/test_driver/screenshot_integration_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaegel/ntodotxt/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------