├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── build-android.yml │ ├── build-docker.yml │ ├── cd.yml │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Assets └── cardiogram.png ├── Backend ├── API.sln ├── Api │ ├── Api.csproj │ ├── Data │ │ ├── EventsContext.cs │ │ ├── IDataBase.cs │ │ ├── MigrationHelper.cs │ │ ├── Models │ │ │ ├── Address.cs │ │ │ ├── Blob.cs │ │ │ ├── Event.cs │ │ │ ├── EventType.cs │ │ │ ├── Files.cs │ │ │ ├── Metric.cs │ │ │ ├── MetricType.cs │ │ │ ├── Person.cs │ │ │ ├── Prescription.cs │ │ │ ├── Right.cs │ │ │ ├── Settings.cs │ │ │ ├── Treatment.cs │ │ │ └── User.cs │ │ ├── Scripts │ │ │ ├── 001-Files.sql │ │ │ ├── 002-Users.sql │ │ │ ├── 003-Health.sql │ │ │ ├── 004-HealthData.sql │ │ │ ├── 005-Settings.sql │ │ │ ├── 006-Metrics.sql │ │ │ ├── 008-MetricsSource.sql │ │ │ ├── 009-Index.sql │ │ │ ├── 010-Metrics.sql │ │ │ ├── 011-Events.sql │ │ │ ├── 012-Admin.sql │ │ │ ├── 013-MetricsImport.sql │ │ │ └── 014-IndexMetrics.sql │ │ ├── SettingsContext.cs │ │ └── UserContext.cs │ ├── Dockerfile │ ├── Endpoints.cs │ ├── Helpers │ │ ├── Auth │ │ │ ├── OauthLogic.cs │ │ │ ├── PasswordLogic.cs │ │ │ ├── ProxyAuthLogic.cs │ │ │ ├── TokenHelper.cs │ │ │ └── TokenService.cs │ │ ├── EventHelpers.cs │ │ ├── Helper.cs │ │ ├── RightsHelper.cs │ │ ├── SettingsHelper.cs │ │ └── UserHelper.cs │ ├── Logic │ │ ├── AuthLogic.cs │ │ ├── EventsLogic.cs │ │ ├── Import │ │ │ ├── Clue │ │ │ │ └── ClueItem.cs │ │ │ ├── ClueImporter.cs │ │ │ ├── FileImporter.cs │ │ │ ├── ListImporter.cs │ │ │ ├── Redmi │ │ │ │ ├── Record.cs │ │ │ │ ├── RedmiRecord.cs │ │ │ │ ├── SleepRecord.cs │ │ │ │ ├── SleepTime.cs │ │ │ │ └── SleepType.cs │ │ │ └── RedmiWatch.cs │ │ ├── ImportLogic.cs │ │ ├── MetricsLogic.cs │ │ ├── PatientsLogic.cs │ │ ├── PersonLogic.cs │ │ ├── SettingsLogic.cs │ │ └── TreatmentLogic.cs │ ├── Models │ │ ├── AdminSettings.cs │ │ ├── Connection.cs │ │ ├── Event.cs │ │ ├── EventSummary.cs │ │ ├── EventTypes.cs │ │ ├── FileTypes.cs │ │ ├── Metric.cs │ │ ├── MetricType.cs │ │ ├── Person.cs │ │ ├── Right.cs │ │ ├── RightType.cs │ │ ├── Treatment.cs │ │ ├── TreatmentType.cs │ │ └── UserType.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json └── Tests │ ├── GlobalUsings.cs │ ├── Integrations │ ├── AuthTests.cs │ └── IntegrationTest.cs │ ├── Tests.csproj │ └── Unit │ └── Logic │ ├── EventsLogicTests.cs │ └── MetricLogicTests.cs ├── Dockerfile ├── Documentation └── Database │ └── database.vuerd.json ├── LICENSE ├── README.md ├── docker-compose.debug.yml ├── docker-compose.yaml └── flutter_frontend ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── local.properties │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── fschiltz │ │ │ │ └── helse │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── 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 ├── build.yaml ├── devtools_options.yaml ├── ios ├── Flutter │ ├── Generated.xcconfig │ └── flutter_export_environment.sh └── Runner │ ├── GeneratedPluginRegistrant.h │ └── GeneratedPluginRegistrant.m ├── lib ├── helpers │ ├── date.dart │ ├── metric_helper.dart │ ├── oauth.dart │ ├── pair.dart │ ├── translation.dart │ ├── url.dart │ ├── url_dummy.dart │ └── users.dart ├── logic │ ├── account │ │ ├── authentication_bloc.dart │ │ └── authentication_logic.dart │ ├── d_i.dart │ ├── event.dart │ ├── fit │ │ ├── fit_logic.dart │ │ └── task_bloc.dart │ ├── settings │ │ ├── events_settings.dart │ │ ├── health_settings.dart │ │ ├── metrics_settings.dart │ │ ├── ordered_item.dart │ │ ├── settings_logic.dart │ │ └── theme_settings.dart │ └── theme_helper.dart ├── main.dart ├── services │ ├── account.dart │ ├── api_service.dart │ ├── event_service.dart │ ├── helper_service.dart │ ├── login_service.dart │ ├── metric_service.dart │ ├── setting_service.dart │ ├── swagger │ │ ├── generated_code │ │ │ ├── client_index.dart │ │ │ ├── client_mapping.dart │ │ │ ├── swagger.enums.swagger.dart │ │ │ ├── swagger.swagger.chopper.dart │ │ │ ├── swagger.swagger.dart │ │ │ └── swagger.swagger.g.dart │ │ └── swagger.json │ ├── treatment_service.dart │ └── user_service.dart └── ui │ ├── admin_dashboard.dart │ ├── administration.dart │ ├── blocs │ ├── administration │ │ ├── events │ │ │ ├── event_add.dart │ │ │ ├── event_form.dart │ │ │ ├── event_settings.dart │ │ │ └── event_type.dart │ │ ├── metrics │ │ │ ├── metric_add.dart │ │ │ ├── metric_form.dart │ │ │ ├── metrics_settings.dart │ │ │ └── metrics_type.dart │ │ ├── settings │ │ │ ├── oauth.dart │ │ │ └── proxy.dart │ │ └── users │ │ │ ├── user_add.dart │ │ │ ├── user_change_role.dart │ │ │ ├── user_form.dart │ │ │ └── users.dart │ ├── calendar │ │ └── calendar_view.dart │ ├── care │ │ ├── agenda.dart │ │ ├── patient_add.dart │ │ ├── patients.dart │ │ ├── patients_dashboard.dart │ │ └── share_patient_dialog.dart │ ├── events │ │ ├── delete_event.dart │ │ ├── event_detail_page.dart │ │ ├── events_add.dart │ │ ├── events_graph.dart │ │ ├── events_grid.dart │ │ ├── events_summary.dart │ │ └── events_widget.dart │ ├── imports │ │ └── file_import.dart │ ├── metrics │ │ ├── metric_add.dart │ │ ├── metric_condensed.dart │ │ ├── metric_detail_page.dart │ │ ├── metric_graph.dart │ │ ├── metric_widget.dart │ │ └── metrics_grid.dart │ └── treatments │ │ ├── treatment_add.dart │ │ └── treatments_grid.dart │ ├── care_dashboard.dart │ ├── common │ ├── custom_switch.dart │ ├── date_input.dart │ ├── date_range_input.dart │ ├── date_range_picker.dart │ ├── file_input.dart │ ├── loader.dart │ ├── notification.dart │ ├── ordered_list.dart │ ├── password_input.dart │ ├── square_dialog.dart │ ├── square_outline_input_border.dart │ ├── square_text_field.dart │ ├── statefull_check.dart │ └── type_input.dart │ ├── dashboard.dart │ ├── home.dart │ ├── local_settings.dart │ ├── login.dart │ ├── patient_dashboard.dart │ ├── splash.dart │ └── task_status_dialog.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 ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart └── web ├── favicon-32x32.png ├── icons ├── Icon-192.png └── Icon-310.png ├── index.html └── manifest.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Assets/cardiogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Assets/cardiogram.png -------------------------------------------------------------------------------- /Backend/API.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/API.sln -------------------------------------------------------------------------------- /Backend/Api/Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Api.csproj -------------------------------------------------------------------------------- /Backend/Api/Data/EventsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/EventsContext.cs -------------------------------------------------------------------------------- /Backend/Api/Data/IDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/IDataBase.cs -------------------------------------------------------------------------------- /Backend/Api/Data/MigrationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/MigrationHelper.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Address.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Blob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Blob.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Event.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/EventType.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Files.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Metric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Metric.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/MetricType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/MetricType.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Person.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Prescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Prescription.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Right.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Right.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Settings.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/Treatment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/Treatment.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Models/User.cs -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/001-Files.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/001-Files.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/002-Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/002-Users.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/003-Health.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/003-Health.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/004-HealthData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/004-HealthData.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/005-Settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/005-Settings.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/006-Metrics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/006-Metrics.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/008-MetricsSource.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE health.Metric ADD COLUMN source INT NOT NULL DEFAULT 0; 2 | 3 | -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/009-Index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/009-Index.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/010-Metrics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/010-Metrics.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/011-Events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/011-Events.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/012-Admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/012-Admin.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/013-MetricsImport.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/013-MetricsImport.sql -------------------------------------------------------------------------------- /Backend/Api/Data/Scripts/014-IndexMetrics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/Scripts/014-IndexMetrics.sql -------------------------------------------------------------------------------- /Backend/Api/Data/SettingsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/SettingsContext.cs -------------------------------------------------------------------------------- /Backend/Api/Data/UserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Data/UserContext.cs -------------------------------------------------------------------------------- /Backend/Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Dockerfile -------------------------------------------------------------------------------- /Backend/Api/Endpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Endpoints.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/Auth/OauthLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/Auth/OauthLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/Auth/PasswordLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/Auth/PasswordLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/Auth/ProxyAuthLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/Auth/ProxyAuthLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/Auth/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/Auth/TokenHelper.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/Auth/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/Auth/TokenService.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/EventHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/EventHelpers.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/Helper.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/RightsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/RightsHelper.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/SettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/SettingsHelper.cs -------------------------------------------------------------------------------- /Backend/Api/Helpers/UserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Helpers/UserHelper.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/AuthLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/AuthLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/EventsLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/EventsLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/Clue/ClueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/Clue/ClueItem.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/ClueImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/ClueImporter.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/FileImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/FileImporter.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/ListImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/ListImporter.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/Redmi/Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/Redmi/Record.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/Redmi/RedmiRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/Redmi/RedmiRecord.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/Redmi/SleepRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/Redmi/SleepRecord.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/Redmi/SleepTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/Redmi/SleepTime.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/Redmi/SleepType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/Redmi/SleepType.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/Import/RedmiWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/Import/RedmiWatch.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/ImportLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/ImportLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/MetricsLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/MetricsLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/PatientsLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/PatientsLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/PersonLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/PersonLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/SettingsLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/SettingsLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Logic/TreatmentLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Logic/TreatmentLogic.cs -------------------------------------------------------------------------------- /Backend/Api/Models/AdminSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/AdminSettings.cs -------------------------------------------------------------------------------- /Backend/Api/Models/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/Connection.cs -------------------------------------------------------------------------------- /Backend/Api/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/Event.cs -------------------------------------------------------------------------------- /Backend/Api/Models/EventSummary.cs: -------------------------------------------------------------------------------- 1 | namespace Api.Models; 2 | 3 | public record EventSummary(Dictionary Data); -------------------------------------------------------------------------------- /Backend/Api/Models/EventTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/EventTypes.cs -------------------------------------------------------------------------------- /Backend/Api/Models/FileTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/FileTypes.cs -------------------------------------------------------------------------------- /Backend/Api/Models/Metric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/Metric.cs -------------------------------------------------------------------------------- /Backend/Api/Models/MetricType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/MetricType.cs -------------------------------------------------------------------------------- /Backend/Api/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/Person.cs -------------------------------------------------------------------------------- /Backend/Api/Models/Right.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/Right.cs -------------------------------------------------------------------------------- /Backend/Api/Models/RightType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/RightType.cs -------------------------------------------------------------------------------- /Backend/Api/Models/Treatment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/Treatment.cs -------------------------------------------------------------------------------- /Backend/Api/Models/TreatmentType.cs: -------------------------------------------------------------------------------- 1 | namespace Api.Models; 2 | 3 | public enum TreatmentType 4 | { 5 | Care, 6 | } 7 | -------------------------------------------------------------------------------- /Backend/Api/Models/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Models/UserType.cs -------------------------------------------------------------------------------- /Backend/Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Program.cs -------------------------------------------------------------------------------- /Backend/Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /Backend/Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/appsettings.Development.json -------------------------------------------------------------------------------- /Backend/Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Api/appsettings.json -------------------------------------------------------------------------------- /Backend/Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Backend/Tests/Integrations/AuthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Tests/Integrations/AuthTests.cs -------------------------------------------------------------------------------- /Backend/Tests/Integrations/IntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Tests/Integrations/IntegrationTest.cs -------------------------------------------------------------------------------- /Backend/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Tests/Tests.csproj -------------------------------------------------------------------------------- /Backend/Tests/Unit/Logic/EventsLogicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Tests/Unit/Logic/EventsLogicTests.cs -------------------------------------------------------------------------------- /Backend/Tests/Unit/Logic/MetricLogicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Backend/Tests/Unit/Logic/MetricLogicTests.cs -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Dockerfile -------------------------------------------------------------------------------- /Documentation/Database/database.vuerd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/Documentation/Database/database.vuerd.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/docker-compose.debug.yml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /flutter_frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/.gitignore -------------------------------------------------------------------------------- /flutter_frontend/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/.metadata -------------------------------------------------------------------------------- /flutter_frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/README.md -------------------------------------------------------------------------------- /flutter_frontend/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/analysis_options.yaml -------------------------------------------------------------------------------- /flutter_frontend/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/.gitignore -------------------------------------------------------------------------------- /flutter_frontend/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/build.gradle -------------------------------------------------------------------------------- /flutter_frontend/android/app/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/local.properties -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/kotlin/com/fschiltz/helse/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/kotlin/com/fschiltz/helse/MainActivity.kt -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /flutter_frontend/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_frontend/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/build.gradle -------------------------------------------------------------------------------- /flutter_frontend/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/gradle.properties -------------------------------------------------------------------------------- /flutter_frontend/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /flutter_frontend/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/android/settings.gradle -------------------------------------------------------------------------------- /flutter_frontend/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/build.yaml -------------------------------------------------------------------------------- /flutter_frontend/devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /flutter_frontend/ios/Flutter/Generated.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/ios/Flutter/Generated.xcconfig -------------------------------------------------------------------------------- /flutter_frontend/ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /flutter_frontend/ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/ios/Runner/GeneratedPluginRegistrant.h -------------------------------------------------------------------------------- /flutter_frontend/ios/Runner/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/ios/Runner/GeneratedPluginRegistrant.m -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/date.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/date.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/metric_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/metric_helper.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/oauth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/oauth.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/pair.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/pair.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/translation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/translation.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/url.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/url_dummy.dart: -------------------------------------------------------------------------------- 1 | class UrlHelper { 2 | static void removeParam() {} 3 | } 4 | -------------------------------------------------------------------------------- /flutter_frontend/lib/helpers/users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/helpers/users.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/account/authentication_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/account/authentication_bloc.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/account/authentication_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/account/authentication_logic.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/d_i.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/d_i.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/event.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/fit/fit_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/fit/fit_logic.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/fit/task_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/fit/task_bloc.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/settings/events_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/settings/events_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/settings/health_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/settings/health_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/settings/metrics_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/settings/metrics_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/settings/ordered_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/settings/ordered_item.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/settings/settings_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/settings/settings_logic.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/settings/theme_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/settings/theme_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/logic/theme_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/logic/theme_helper.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/main.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/account.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/api_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/event_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/event_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/helper_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/helper_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/login_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/metric_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/metric_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/setting_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/setting_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/generated_code/client_index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/generated_code/client_index.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/generated_code/client_mapping.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/generated_code/client_mapping.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/generated_code/swagger.enums.swagger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/generated_code/swagger.enums.swagger.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/generated_code/swagger.swagger.chopper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/generated_code/swagger.swagger.chopper.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/generated_code/swagger.swagger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/generated_code/swagger.swagger.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/generated_code/swagger.swagger.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/generated_code/swagger.swagger.g.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/swagger/swagger.json -------------------------------------------------------------------------------- /flutter_frontend/lib/services/treatment_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/treatment_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/services/user_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/services/user_service.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/admin_dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/admin_dashboard.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/administration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/administration.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/events/event_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/events/event_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/events/event_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/events/event_form.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/events/event_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/events/event_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/events/event_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/events/event_type.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/metrics/metric_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/metrics/metric_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/metrics/metric_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/metrics/metric_form.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/metrics/metrics_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/metrics/metrics_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/metrics/metrics_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/metrics/metrics_type.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/settings/oauth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/settings/oauth.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/settings/proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/settings/proxy.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/users/user_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/users/user_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/users/user_change_role.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/users/user_change_role.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/users/user_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/users/user_form.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/administration/users/users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/administration/users/users.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/calendar/calendar_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/calendar/calendar_view.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/care/agenda.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/care/agenda.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/care/patient_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/care/patient_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/care/patients.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/care/patients.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/care/patients_dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/care/patients_dashboard.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/care/share_patient_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/care/share_patient_dialog.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/delete_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/delete_event.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/event_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/event_detail_page.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/events_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/events_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/events_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/events_graph.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/events_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/events_grid.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/events_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/events_summary.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/events/events_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/events/events_widget.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/imports/file_import.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/imports/file_import.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/metrics/metric_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/metrics/metric_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/metrics/metric_condensed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/metrics/metric_condensed.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/metrics/metric_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/metrics/metric_detail_page.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/metrics/metric_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/metrics/metric_graph.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/metrics/metric_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/metrics/metric_widget.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/metrics/metrics_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/metrics/metrics_grid.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/treatments/treatment_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/treatments/treatment_add.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/blocs/treatments/treatments_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/blocs/treatments/treatments_grid.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/care_dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/care_dashboard.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/custom_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/custom_switch.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/date_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/date_input.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/date_range_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/date_range_input.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/date_range_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/date_range_picker.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/file_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/file_input.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/loader.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/notification.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/ordered_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/ordered_list.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/password_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/password_input.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/square_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/square_dialog.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/square_outline_input_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/square_outline_input_border.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/square_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/square_text_field.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/statefull_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/statefull_check.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/common/type_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/common/type_input.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/dashboard.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/home.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/local_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/local_settings.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/login.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/patient_dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/patient_dashboard.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/splash.dart -------------------------------------------------------------------------------- /flutter_frontend/lib/ui/task_status_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/lib/ui/task_status_dialog.dart -------------------------------------------------------------------------------- /flutter_frontend/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /flutter_frontend/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/CMakeLists.txt -------------------------------------------------------------------------------- /flutter_frontend/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /flutter_frontend/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /flutter_frontend/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /flutter_frontend/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /flutter_frontend/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/main.cc -------------------------------------------------------------------------------- /flutter_frontend/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/my_application.cc -------------------------------------------------------------------------------- /flutter_frontend/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/linux/my_application.h -------------------------------------------------------------------------------- /flutter_frontend/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/pubspec.lock -------------------------------------------------------------------------------- /flutter_frontend/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/pubspec.yaml -------------------------------------------------------------------------------- /flutter_frontend/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/test/widget_test.dart -------------------------------------------------------------------------------- /flutter_frontend/web/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/web/favicon-32x32.png -------------------------------------------------------------------------------- /flutter_frontend/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/web/icons/Icon-192.png -------------------------------------------------------------------------------- /flutter_frontend/web/icons/Icon-310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/web/icons/Icon-310.png -------------------------------------------------------------------------------- /flutter_frontend/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/web/index.html -------------------------------------------------------------------------------- /flutter_frontend/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSchiltz/Helse/HEAD/flutter_frontend/web/manifest.json --------------------------------------------------------------------------------