├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets └── app_icon.ico ├── flutter_rust_bridge.yaml ├── lib ├── API │ └── apis.dart ├── HIveCtrl │ ├── adapters │ │ ├── music_cache_adapter.dart │ │ ├── scalable_setting_adapters.dart │ │ ├── setting_cache_adapter.dart │ │ └── user_playlist_adapter.dart │ ├── hive_boxes.dart │ ├── hive_crud.dart │ ├── hive_manager.dart │ ├── hive_types.dart │ └── models │ │ ├── music_cache_model.dart │ │ ├── scalable_setting_cache_model.dart │ │ ├── setting_cache_model.dart │ │ └── user_playlist_model.dart ├── components │ ├── audio_ctrl_btn.dart │ ├── audio_gen_pages.dart │ ├── blur_background.dart │ ├── edit_embedded_lyrics_dialog.dart │ ├── edit_metadata_dialog.dart │ ├── floating_button.dart │ ├── get_snack_bar.dart │ ├── lyrics_render.dart │ ├── music_list_tool.dart │ ├── play_bar.dart │ ├── sorted_list_view.dart │ └── window_ctrl_bar.dart ├── custom_widgets │ ├── custom_button.dart │ ├── custom_drop_menu.dart │ ├── custom_navigation.dart │ └── custom_widget.dart ├── desktop_lyrics_sever.dart ├── field │ ├── app_routes.dart │ ├── audio_source.dart │ ├── operate_area.dart │ ├── scalable_config_keys.dart │ └── tag_suffix.dart ├── getxController │ ├── album_list_crl.dart │ ├── artist_list_ctrl.dart │ ├── audio_ctrl.dart │ ├── desktop_lyrics_setting_ctrl.dart │ ├── folders_list_ctrl.dart │ ├── lyric_ctrl.dart │ ├── music_cache_ctrl.dart │ ├── play_list_ctrl.dart │ ├── setting_ctrl.dart │ └── user_playlist_ctrl.dart ├── main.dart ├── pages │ ├── album_list_page.dart │ ├── album_view_page.dart │ ├── artist_list_page.dart │ ├── artist_view_page.dart │ ├── folders_list_page.dart │ ├── folders_view_page.dart │ ├── local_music_page.dart │ ├── lrc_view.dart │ ├── playlist_page.dart │ ├── setting_page.dart │ └── user_playlists_page.dart ├── src │ └── rust │ │ ├── api │ │ ├── bass.dart │ │ ├── bass │ │ │ ├── bass_func.dart │ │ │ └── basswasapi_func.dart │ │ ├── get_fonts.dart │ │ ├── music_tag_tool.dart │ │ └── smtc.dart │ │ ├── frb_generated.dart │ │ ├── frb_generated.io.dart │ │ └── frb_generated.web.dart ├── theme_manager.dart └── tools │ ├── audio_ctrl_mixin.dart │ ├── diamond_silder_thumb.dart │ ├── format_time.dart │ ├── func_extension.dart │ ├── general_style.dart │ ├── get_sort_type.dart │ ├── lrcTool │ ├── get_lyrics.dart │ ├── lyric_model.dart │ ├── parse_lyrics.dart │ └── save_lyric.dart │ ├── qrc_decryptor.dart │ ├── rect_value_indicator.dart │ ├── search.dart │ ├── sync_cache.dart │ └── websocket_model.dart ├── pubspec.lock ├── pubspec.yaml ├── rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ ├── api │ ├── bass.rs │ ├── bass │ │ ├── bass_errs.rs │ │ ├── bass_flags.rs │ │ ├── bass_func.rs │ │ ├── bassfx_func.rs │ │ └── basswasapi_func.rs │ ├── get_fonts.rs │ ├── mod.rs │ ├── music_tag_tool.rs │ └── smtc.rs │ ├── frb_generated.rs │ └── lib.rs ├── rust_builder ├── .gitignore ├── README.md ├── android │ ├── .gitignore │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── cargokit │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── build_pod.sh │ ├── build_tool │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── build_tool.dart │ │ ├── lib │ │ │ ├── build_tool.dart │ │ │ └── src │ │ │ │ ├── android_environment.dart │ │ │ │ ├── artifacts_provider.dart │ │ │ │ ├── build_cmake.dart │ │ │ │ ├── build_gradle.dart │ │ │ │ ├── build_pod.dart │ │ │ │ ├── build_tool.dart │ │ │ │ ├── builder.dart │ │ │ │ ├── cargo.dart │ │ │ │ ├── crate_hash.dart │ │ │ │ ├── environment.dart │ │ │ │ ├── logging.dart │ │ │ │ ├── options.dart │ │ │ │ ├── precompile_binaries.dart │ │ │ │ ├── rustup.dart │ │ │ │ ├── target.dart │ │ │ │ ├── util.dart │ │ │ │ └── verify_binaries.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ ├── cmake │ │ ├── cargokit.cmake │ │ └── resolve_symlinks.ps1 │ ├── gradle │ │ └── plugin.gradle │ ├── run_build_tool.cmd │ └── run_build_tool.sh ├── ios │ ├── Classes │ │ └── dummy_file.c │ └── rust_lib_zerobit_player.podspec ├── linux │ └── CMakeLists.txt ├── macos │ ├── Classes │ │ └── dummy_file.c │ └── rust_lib_zerobit_player.podspec ├── pubspec.yaml └── windows │ ├── .gitignore │ └── CMakeLists.txt ├── screenshot ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── 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/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/assets/app_icon.ico -------------------------------------------------------------------------------- /flutter_rust_bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/flutter_rust_bridge.yaml -------------------------------------------------------------------------------- /lib/API/apis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/API/apis.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/adapters/music_cache_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/adapters/music_cache_adapter.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/adapters/scalable_setting_adapters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/adapters/scalable_setting_adapters.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/adapters/setting_cache_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/adapters/setting_cache_adapter.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/adapters/user_playlist_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/adapters/user_playlist_adapter.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/hive_boxes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/hive_boxes.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/hive_crud.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/hive_crud.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/hive_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/hive_manager.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/hive_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/hive_types.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/models/music_cache_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/models/music_cache_model.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/models/scalable_setting_cache_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/models/scalable_setting_cache_model.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/models/setting_cache_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/models/setting_cache_model.dart -------------------------------------------------------------------------------- /lib/HIveCtrl/models/user_playlist_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/HIveCtrl/models/user_playlist_model.dart -------------------------------------------------------------------------------- /lib/components/audio_ctrl_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/audio_ctrl_btn.dart -------------------------------------------------------------------------------- /lib/components/audio_gen_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/audio_gen_pages.dart -------------------------------------------------------------------------------- /lib/components/blur_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/blur_background.dart -------------------------------------------------------------------------------- /lib/components/edit_embedded_lyrics_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/edit_embedded_lyrics_dialog.dart -------------------------------------------------------------------------------- /lib/components/edit_metadata_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/edit_metadata_dialog.dart -------------------------------------------------------------------------------- /lib/components/floating_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/floating_button.dart -------------------------------------------------------------------------------- /lib/components/get_snack_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/get_snack_bar.dart -------------------------------------------------------------------------------- /lib/components/lyrics_render.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/lyrics_render.dart -------------------------------------------------------------------------------- /lib/components/music_list_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/music_list_tool.dart -------------------------------------------------------------------------------- /lib/components/play_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/play_bar.dart -------------------------------------------------------------------------------- /lib/components/sorted_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/sorted_list_view.dart -------------------------------------------------------------------------------- /lib/components/window_ctrl_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/components/window_ctrl_bar.dart -------------------------------------------------------------------------------- /lib/custom_widgets/custom_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/custom_widgets/custom_button.dart -------------------------------------------------------------------------------- /lib/custom_widgets/custom_drop_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/custom_widgets/custom_drop_menu.dart -------------------------------------------------------------------------------- /lib/custom_widgets/custom_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/custom_widgets/custom_navigation.dart -------------------------------------------------------------------------------- /lib/custom_widgets/custom_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/custom_widgets/custom_widget.dart -------------------------------------------------------------------------------- /lib/desktop_lyrics_sever.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/desktop_lyrics_sever.dart -------------------------------------------------------------------------------- /lib/field/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/field/app_routes.dart -------------------------------------------------------------------------------- /lib/field/audio_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/field/audio_source.dart -------------------------------------------------------------------------------- /lib/field/operate_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/field/operate_area.dart -------------------------------------------------------------------------------- /lib/field/scalable_config_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/field/scalable_config_keys.dart -------------------------------------------------------------------------------- /lib/field/tag_suffix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/field/tag_suffix.dart -------------------------------------------------------------------------------- /lib/getxController/album_list_crl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/album_list_crl.dart -------------------------------------------------------------------------------- /lib/getxController/artist_list_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/artist_list_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/audio_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/audio_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/desktop_lyrics_setting_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/desktop_lyrics_setting_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/folders_list_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/folders_list_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/lyric_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/lyric_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/music_cache_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/music_cache_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/play_list_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/play_list_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/setting_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/setting_ctrl.dart -------------------------------------------------------------------------------- /lib/getxController/user_playlist_ctrl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/getxController/user_playlist_ctrl.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/album_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/album_list_page.dart -------------------------------------------------------------------------------- /lib/pages/album_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/album_view_page.dart -------------------------------------------------------------------------------- /lib/pages/artist_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/artist_list_page.dart -------------------------------------------------------------------------------- /lib/pages/artist_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/artist_view_page.dart -------------------------------------------------------------------------------- /lib/pages/folders_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/folders_list_page.dart -------------------------------------------------------------------------------- /lib/pages/folders_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/folders_view_page.dart -------------------------------------------------------------------------------- /lib/pages/local_music_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/local_music_page.dart -------------------------------------------------------------------------------- /lib/pages/lrc_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/lrc_view.dart -------------------------------------------------------------------------------- /lib/pages/playlist_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/playlist_page.dart -------------------------------------------------------------------------------- /lib/pages/setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/setting_page.dart -------------------------------------------------------------------------------- /lib/pages/user_playlists_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/pages/user_playlists_page.dart -------------------------------------------------------------------------------- /lib/src/rust/api/bass.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/api/bass.dart -------------------------------------------------------------------------------- /lib/src/rust/api/bass/bass_func.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/api/bass/bass_func.dart -------------------------------------------------------------------------------- /lib/src/rust/api/bass/basswasapi_func.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/api/bass/basswasapi_func.dart -------------------------------------------------------------------------------- /lib/src/rust/api/get_fonts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/api/get_fonts.dart -------------------------------------------------------------------------------- /lib/src/rust/api/music_tag_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/api/music_tag_tool.dart -------------------------------------------------------------------------------- /lib/src/rust/api/smtc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/api/smtc.dart -------------------------------------------------------------------------------- /lib/src/rust/frb_generated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/frb_generated.dart -------------------------------------------------------------------------------- /lib/src/rust/frb_generated.io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/frb_generated.io.dart -------------------------------------------------------------------------------- /lib/src/rust/frb_generated.web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/src/rust/frb_generated.web.dart -------------------------------------------------------------------------------- /lib/theme_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/theme_manager.dart -------------------------------------------------------------------------------- /lib/tools/audio_ctrl_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/audio_ctrl_mixin.dart -------------------------------------------------------------------------------- /lib/tools/diamond_silder_thumb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/diamond_silder_thumb.dart -------------------------------------------------------------------------------- /lib/tools/format_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/format_time.dart -------------------------------------------------------------------------------- /lib/tools/func_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/func_extension.dart -------------------------------------------------------------------------------- /lib/tools/general_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/general_style.dart -------------------------------------------------------------------------------- /lib/tools/get_sort_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/get_sort_type.dart -------------------------------------------------------------------------------- /lib/tools/lrcTool/get_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/lrcTool/get_lyrics.dart -------------------------------------------------------------------------------- /lib/tools/lrcTool/lyric_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/lrcTool/lyric_model.dart -------------------------------------------------------------------------------- /lib/tools/lrcTool/parse_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/lrcTool/parse_lyrics.dart -------------------------------------------------------------------------------- /lib/tools/lrcTool/save_lyric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/lrcTool/save_lyric.dart -------------------------------------------------------------------------------- /lib/tools/qrc_decryptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/qrc_decryptor.dart -------------------------------------------------------------------------------- /lib/tools/rect_value_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/rect_value_indicator.dart -------------------------------------------------------------------------------- /lib/tools/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/search.dart -------------------------------------------------------------------------------- /lib/tools/sync_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/sync_cache.dart -------------------------------------------------------------------------------- /lib/tools/websocket_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/lib/tools/websocket_model.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/src/api/bass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/bass.rs -------------------------------------------------------------------------------- /rust/src/api/bass/bass_errs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/bass/bass_errs.rs -------------------------------------------------------------------------------- /rust/src/api/bass/bass_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/bass/bass_flags.rs -------------------------------------------------------------------------------- /rust/src/api/bass/bass_func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/bass/bass_func.rs -------------------------------------------------------------------------------- /rust/src/api/bass/bassfx_func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/bass/bassfx_func.rs -------------------------------------------------------------------------------- /rust/src/api/bass/basswasapi_func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/bass/basswasapi_func.rs -------------------------------------------------------------------------------- /rust/src/api/get_fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/get_fonts.rs -------------------------------------------------------------------------------- /rust/src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/mod.rs -------------------------------------------------------------------------------- /rust/src/api/music_tag_tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/music_tag_tool.rs -------------------------------------------------------------------------------- /rust/src/api/smtc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/api/smtc.rs -------------------------------------------------------------------------------- /rust/src/frb_generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/frb_generated.rs -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust/src/lib.rs -------------------------------------------------------------------------------- /rust_builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/.gitignore -------------------------------------------------------------------------------- /rust_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/README.md -------------------------------------------------------------------------------- /rust_builder/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/android/.gitignore -------------------------------------------------------------------------------- /rust_builder/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/android/build.gradle -------------------------------------------------------------------------------- /rust_builder/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'rust_lib_zerobit_player' 2 | -------------------------------------------------------------------------------- /rust_builder/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rust_builder/cargokit/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .dart_tool 3 | *.iml 4 | !pubspec.lock 5 | -------------------------------------------------------------------------------- /rust_builder/cargokit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/LICENSE -------------------------------------------------------------------------------- /rust_builder/cargokit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/README -------------------------------------------------------------------------------- /rust_builder/cargokit/build_pod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_pod.sh -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/README.md -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/analysis_options.yaml -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/bin/build_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/bin/build_tool.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/build_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/build_tool.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/android_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/android_environment.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/artifacts_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/artifacts_provider.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/build_cmake.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/build_cmake.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/build_gradle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/build_gradle.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/build_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/build_pod.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/build_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/build_tool.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/builder.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/cargo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/cargo.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/crate_hash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/crate_hash.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/environment.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/logging.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/options.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/precompile_binaries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/precompile_binaries.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/rustup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/rustup.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/target.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/target.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/util.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/lib/src/verify_binaries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/lib/src/verify_binaries.dart -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/pubspec.lock -------------------------------------------------------------------------------- /rust_builder/cargokit/build_tool/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/build_tool/pubspec.yaml -------------------------------------------------------------------------------- /rust_builder/cargokit/cmake/cargokit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/cmake/cargokit.cmake -------------------------------------------------------------------------------- /rust_builder/cargokit/cmake/resolve_symlinks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/cmake/resolve_symlinks.ps1 -------------------------------------------------------------------------------- /rust_builder/cargokit/gradle/plugin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/gradle/plugin.gradle -------------------------------------------------------------------------------- /rust_builder/cargokit/run_build_tool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/run_build_tool.cmd -------------------------------------------------------------------------------- /rust_builder/cargokit/run_build_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/cargokit/run_build_tool.sh -------------------------------------------------------------------------------- /rust_builder/ios/Classes/dummy_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/ios/Classes/dummy_file.c -------------------------------------------------------------------------------- /rust_builder/ios/rust_lib_zerobit_player.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/ios/rust_lib_zerobit_player.podspec -------------------------------------------------------------------------------- /rust_builder/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/linux/CMakeLists.txt -------------------------------------------------------------------------------- /rust_builder/macos/Classes/dummy_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/macos/Classes/dummy_file.c -------------------------------------------------------------------------------- /rust_builder/macos/rust_lib_zerobit_player.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/macos/rust_lib_zerobit_player.podspec -------------------------------------------------------------------------------- /rust_builder/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/pubspec.yaml -------------------------------------------------------------------------------- /rust_builder/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/windows/.gitignore -------------------------------------------------------------------------------- /rust_builder/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/rust_builder/windows/CMakeLists.txt -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/10.png -------------------------------------------------------------------------------- /screenshot/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/11.png -------------------------------------------------------------------------------- /screenshot/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/12.png -------------------------------------------------------------------------------- /screenshot/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/13.png -------------------------------------------------------------------------------- /screenshot/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/14.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/screenshot/9.png -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empty-57/ZeroBit-Player/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------