profile level unread notifications and in profile other profile unread notifications #337

Merged
sarah merged 5 commits from profileNotify into trunk 2022-02-04 02:01:36 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit be65417f27 - Show all commits

View File

@ -7,9 +7,13 @@
#include "generated_plugin_registrant.h"
#include <url_launcher_linux/url_launcher_plugin.h>
#include <window_manager/window_manager_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
g_autoptr(FlPluginRegistrar) window_manager_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "WindowManagerPlugin");
window_manager_plugin_register_with_registrar(window_manager_registrar);
}

View File

@ -4,6 +4,7 @@
list(APPEND FLUTTER_PLUGIN_LIST
url_launcher_linux
window_manager
)
set(PLUGIN_BUNDLED_LIBRARIES)