mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 19:19:28 +00:00
* refactor: consolidate theme definitions by removing separate dark and light theme files * feat: integrate dynamic color support and enhance theme settings management * feat: add theme settings route and update theme management in app settings * feat: enhance theme management by integrating high contrast support in various components * feat: implement mode selection dialog for theme settings and enhance button functionality * refactor: update theme import paths and consolidate theme provider files * feat: enhance theme management by integrating theme selection based on audiobook playback * refactor: update default value for useMaterialThemeFromSystem to false in theme settings * refactor: adjust high contrast condition order in theme settings for consistency * refactor: rename useMaterialThemeOfPlayingItem to useCurrentPlayerThemeThroughoutApp for clarity * refactor: correct spelling in system theme provider and replace with updated implementation * refactor: extract restore backup dialog into a separate widget for improved readability * refactor: reorganize settings sections for clarity and improve restore dialog functionality
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <dynamic_color/dynamic_color_plugin_c_api.h>
|
|
#include <isar_flutter_libs/isar_flutter_libs_plugin.h>
|
|
#include <media_kit_libs_windows_audio/media_kit_libs_windows_audio_plugin_c_api.h>
|
|
#include <permission_handler_windows/permission_handler_windows_plugin.h>
|
|
#include <share_plus/share_plus_windows_plugin_c_api.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
DynamicColorPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("DynamicColorPluginCApi"));
|
|
IsarFlutterLibsPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("IsarFlutterLibsPlugin"));
|
|
MediaKitLibsWindowsAudioPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("MediaKitLibsWindowsAudioPluginCApi"));
|
|
PermissionHandlerWindowsPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
|
|
SharePlusWindowsPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
}
|