├── .github └── workflows │ ├── release_build.yml │ ├── test.yml │ └── test_build.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── kzs │ │ │ │ └── th000 │ │ │ │ └── mpax_flutter │ │ │ │ └── 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 └── images │ ├── mpax_flutter.svg │ └── mpax_flutter_192.png ├── docs ├── README_zh_CN.md └── images │ ├── screenshot_dark.jpg │ └── screenshot_light.jpg ├── lib ├── app.dart ├── constants │ └── layout.dart ├── extensions │ └── fpdart.dart ├── features │ ├── album │ │ └── view │ │ │ └── album_page.dart │ ├── artist │ │ └── view │ │ │ └── artist_page.dart │ ├── home │ │ ├── cubit │ │ │ ├── home_cubit.dart │ │ │ └── home_state.dart │ │ ├── view │ │ │ └── home_page.dart │ │ └── widget │ │ │ ├── home_navigation_bar.dart │ │ │ └── home_navigation_rail.dart │ ├── logging │ │ ├── enums │ │ │ └── loglevel.dart │ │ └── repository │ │ │ ├── logging_repository.dart │ │ │ └── logging_repository_impl.dart │ ├── metadata │ │ └── repository │ │ │ ├── metadata_repository.dart │ │ │ └── metadata_taglib_repository_impl.dart │ ├── music_library │ │ ├── bloc │ │ │ ├── music_library_bloc.dart │ │ │ ├── music_library_event.dart │ │ │ └── music_library_state.dart │ │ ├── repository │ │ │ ├── music_library_repository.dart │ │ │ └── music_library_repository_impl.dart │ │ └── view │ │ │ └── music_library_page.dart │ ├── playlist │ │ └── view │ │ │ └── playlist_page.dart │ ├── settings │ │ ├── bloc │ │ │ ├── settings_bloc.dart │ │ │ ├── settings_event.dart │ │ │ └── settings_state.dart │ │ ├── repository │ │ │ ├── mixin │ │ │ │ └── default_settings_model.dart │ │ │ ├── settings_repository.dart │ │ │ └── settings_repository_impl.dart │ │ ├── view │ │ │ └── settings_page.dart │ │ └── widgets │ │ │ ├── select_accent_color_dialog.dart │ │ │ ├── select_language_dialog.dart │ │ │ └── select_loglevel_dialog.dart │ ├── storage │ │ └── repository │ │ │ └── storage_repository.dart │ └── theme │ │ └── cubit │ │ ├── theme_cubit.dart │ │ └── theme_state.dart ├── i18n │ ├── strings.i18n.json │ ├── strings_zh-CN.i18n.json │ └── strings_zh-TW.i18n.json ├── instance.dart ├── main.dart ├── routes │ ├── routes.dart │ └── screen_paths.dart ├── shared │ ├── basic_status.dart │ ├── models │ │ ├── metadata.dart │ │ ├── models.dart │ │ ├── music.dart │ │ ├── settings.dart │ │ └── shared_models.dart │ └── providers │ │ └── storage_provider │ │ ├── database │ │ ├── connection │ │ │ ├── connection.dart │ │ │ ├── native.dart │ │ │ ├── unsupported.dart │ │ │ └── web.dart │ │ ├── dao │ │ │ ├── album.dart │ │ │ ├── artist.dart │ │ │ ├── music.dart │ │ │ ├── playlist.dart │ │ │ └── settings.dart │ │ ├── database.dart │ │ ├── schema │ │ │ ├── album.dart │ │ │ ├── artist.dart │ │ │ ├── music.dart │ │ │ ├── playlist.dart │ │ │ ├── schema.dart │ │ │ └── settings.dart │ │ └── shared_model.dart │ │ ├── storage_provider.dart │ │ └── storage_provider_impl.dart ├── themes │ └── app_themes.dart ├── utils │ └── show_dialog.dart └── widgets │ ├── section_list_tile.dart │ └── section_title_text.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.yaml ├── scripts └── build.sh ├── test └── widget_test.dart └── 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/workflows/release_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/.github/workflows/release_build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/.github/workflows/test_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/kzs/th000/mpax_flutter/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/main/kotlin/kzs/th000/mpax_flutter/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/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/realth000/mpax_flutter/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/realth000/mpax_flutter/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/realth000/mpax_flutter/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/realth000/mpax_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/mpax_flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/assets/images/mpax_flutter.svg -------------------------------------------------------------------------------- /assets/images/mpax_flutter_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/assets/images/mpax_flutter_192.png -------------------------------------------------------------------------------- /docs/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/docs/README_zh_CN.md -------------------------------------------------------------------------------- /docs/images/screenshot_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/docs/images/screenshot_dark.jpg -------------------------------------------------------------------------------- /docs/images/screenshot_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/docs/images/screenshot_light.jpg -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/constants/layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/constants/layout.dart -------------------------------------------------------------------------------- /lib/extensions/fpdart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/extensions/fpdart.dart -------------------------------------------------------------------------------- /lib/features/album/view/album_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/album/view/album_page.dart -------------------------------------------------------------------------------- /lib/features/artist/view/artist_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/artist/view/artist_page.dart -------------------------------------------------------------------------------- /lib/features/home/cubit/home_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/home/cubit/home_cubit.dart -------------------------------------------------------------------------------- /lib/features/home/cubit/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/home/cubit/home_state.dart -------------------------------------------------------------------------------- /lib/features/home/view/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/home/view/home_page.dart -------------------------------------------------------------------------------- /lib/features/home/widget/home_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/home/widget/home_navigation_bar.dart -------------------------------------------------------------------------------- /lib/features/home/widget/home_navigation_rail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/home/widget/home_navigation_rail.dart -------------------------------------------------------------------------------- /lib/features/logging/enums/loglevel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/logging/enums/loglevel.dart -------------------------------------------------------------------------------- /lib/features/logging/repository/logging_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/logging/repository/logging_repository.dart -------------------------------------------------------------------------------- /lib/features/logging/repository/logging_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/logging/repository/logging_repository_impl.dart -------------------------------------------------------------------------------- /lib/features/metadata/repository/metadata_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/metadata/repository/metadata_repository.dart -------------------------------------------------------------------------------- /lib/features/metadata/repository/metadata_taglib_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/metadata/repository/metadata_taglib_repository_impl.dart -------------------------------------------------------------------------------- /lib/features/music_library/bloc/music_library_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/music_library/bloc/music_library_bloc.dart -------------------------------------------------------------------------------- /lib/features/music_library/bloc/music_library_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/music_library/bloc/music_library_event.dart -------------------------------------------------------------------------------- /lib/features/music_library/bloc/music_library_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/music_library/bloc/music_library_state.dart -------------------------------------------------------------------------------- /lib/features/music_library/repository/music_library_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/music_library/repository/music_library_repository.dart -------------------------------------------------------------------------------- /lib/features/music_library/repository/music_library_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/music_library/repository/music_library_repository_impl.dart -------------------------------------------------------------------------------- /lib/features/music_library/view/music_library_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/music_library/view/music_library_page.dart -------------------------------------------------------------------------------- /lib/features/playlist/view/playlist_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/playlist/view/playlist_page.dart -------------------------------------------------------------------------------- /lib/features/settings/bloc/settings_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/bloc/settings_bloc.dart -------------------------------------------------------------------------------- /lib/features/settings/bloc/settings_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/bloc/settings_event.dart -------------------------------------------------------------------------------- /lib/features/settings/bloc/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/bloc/settings_state.dart -------------------------------------------------------------------------------- /lib/features/settings/repository/mixin/default_settings_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/repository/mixin/default_settings_model.dart -------------------------------------------------------------------------------- /lib/features/settings/repository/settings_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/repository/settings_repository.dart -------------------------------------------------------------------------------- /lib/features/settings/repository/settings_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/repository/settings_repository_impl.dart -------------------------------------------------------------------------------- /lib/features/settings/view/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/view/settings_page.dart -------------------------------------------------------------------------------- /lib/features/settings/widgets/select_accent_color_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/widgets/select_accent_color_dialog.dart -------------------------------------------------------------------------------- /lib/features/settings/widgets/select_language_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/widgets/select_language_dialog.dart -------------------------------------------------------------------------------- /lib/features/settings/widgets/select_loglevel_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/settings/widgets/select_loglevel_dialog.dart -------------------------------------------------------------------------------- /lib/features/storage/repository/storage_repository.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/features/theme/cubit/theme_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/theme/cubit/theme_cubit.dart -------------------------------------------------------------------------------- /lib/features/theme/cubit/theme_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/features/theme/cubit/theme_state.dart -------------------------------------------------------------------------------- /lib/i18n/strings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/i18n/strings.i18n.json -------------------------------------------------------------------------------- /lib/i18n/strings_zh-CN.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/i18n/strings_zh-CN.i18n.json -------------------------------------------------------------------------------- /lib/i18n/strings_zh-TW.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/i18n/strings_zh-TW.i18n.json -------------------------------------------------------------------------------- /lib/instance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/instance.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/routes/routes.dart -------------------------------------------------------------------------------- /lib/routes/screen_paths.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/routes/screen_paths.dart -------------------------------------------------------------------------------- /lib/shared/basic_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/basic_status.dart -------------------------------------------------------------------------------- /lib/shared/models/metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/models/metadata.dart -------------------------------------------------------------------------------- /lib/shared/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/models/models.dart -------------------------------------------------------------------------------- /lib/shared/models/music.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/models/music.dart -------------------------------------------------------------------------------- /lib/shared/models/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/models/settings.dart -------------------------------------------------------------------------------- /lib/shared/models/shared_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/models/shared_models.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/connection/connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/connection/connection.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/connection/native.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/connection/native.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/connection/unsupported.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/connection/web.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/dao/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/dao/album.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/dao/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/dao/artist.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/dao/music.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/dao/music.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/dao/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/dao/playlist.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/dao/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/dao/settings.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/database.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/schema/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/schema/album.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/schema/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/schema/artist.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/schema/music.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/schema/music.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/schema/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/schema/playlist.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/schema/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/schema/schema.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/schema/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/schema/settings.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/database/shared_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/database/shared_model.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/storage_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/storage_provider.dart -------------------------------------------------------------------------------- /lib/shared/providers/storage_provider/storage_provider_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/shared/providers/storage_provider/storage_provider_impl.dart -------------------------------------------------------------------------------- /lib/themes/app_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/themes/app_themes.dart -------------------------------------------------------------------------------- /lib/utils/show_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/utils/show_dialog.dart -------------------------------------------------------------------------------- /lib/widgets/section_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/widgets/section_list_tile.dart -------------------------------------------------------------------------------- /lib/widgets/section_title_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/lib/widgets/section_title_text.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realth000/mpax_flutter/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------