mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-16 21:46:04 +00:00

* refactor: rename structs * chore: read database id from view * chore: fix open database error because of create a database view for database id * chore: fix tests * chore: rename datbase id to view id in flutter * refactor: move grid and board to database view folder * refactor: rename functions * refactor: move calender to datbase view folder * refactor: rename app_flowy to appflowy_flutter * chore: reanming * chore: fix freeze gen * chore: remove todos * refactor: view process events * chore: add link database test * chore: just open view if there is opened database
16 lines
614 B
Objective-C
16 lines
614 B
Objective-C
#import "AppFlowyBackendPlugin.h"
|
|
#if __has_include(<appflowy_backend/appflowy_backend-Swift.h>)
|
|
#import <appflowy_backend/appflowy_backend-Swift.h>
|
|
#else
|
|
// Support project import fallback if the generated compatibility header
|
|
// is not copied when this plugin is created as a library.
|
|
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
|
|
#import "appflowy_backend-Swift.h"
|
|
#endif
|
|
|
|
@implementation AppFlowyBackendPlugin
|
|
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
|
|
[SwiftAppFlowyBackendPlugin registerWithRegistrar:registrar];
|
|
}
|
|
@end
|