first commit

This commit is contained in:
2026-04-29 12:53:22 +07:00
commit e6a30eddd3
394 changed files with 16408 additions and 0 deletions

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/connectivity_plus-6.1.5/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/device_info_plus-12.4.0/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/file_picker-11.0.2/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/flutter_local_notifications_linux-7.0.0/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/share_plus-12.0.1/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/syncfusion_pdfviewer_linux-33.2.3/

View File

@@ -0,0 +1 @@
/Users/muslim/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/

View File

@@ -0,0 +1,23 @@
//
// Generated file. Do not edit.
//
// clang-format off
#include "generated_plugin_registrant.h"
#include <file_selector_linux/file_selector_plugin.h>
#include <syncfusion_pdfviewer_linux/syncfusion_pdfviewer_linux_plugin.h>
#include <url_launcher_linux/url_launcher_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
g_autoptr(FlPluginRegistrar) syncfusion_pdfviewer_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "SyncfusionPdfviewerLinuxPlugin");
syncfusion_pdfviewer_linux_plugin_register_with_registrar(syncfusion_pdfviewer_linux_registrar);
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);
}

View File

@@ -0,0 +1,15 @@
//
// Generated file. Do not edit.
//
// clang-format off
#ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_
#include <flutter_linux/flutter_linux.h>
// Registers Flutter plugins.
void fl_register_plugins(FlPluginRegistry* registry);
#endif // GENERATED_PLUGIN_REGISTRANT_

View File

@@ -0,0 +1,26 @@
#
# Generated file, do not edit.
#
list(APPEND FLUTTER_PLUGIN_LIST
file_selector_linux
syncfusion_pdfviewer_linux
url_launcher_linux
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST
)
set(PLUGIN_BUNDLED_LIBRARIES)
foreach(plugin ${FLUTTER_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
endforeach(plugin)
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
endforeach(ffi_plugin)