Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flutter_boost_1.22.4
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李增强
flutter_boost_1.22.4
Commits
4fc0510d
Commit
4fc0510d
authored
Jan 09, 2020
by
余玠
Committed by
yangwu.jia
Jan 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new api to allow client control whether flutter boost handle the registration of all plugins
parent
5f4b3a8d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
11 deletions
+40
-11
ios/Classes/Boost/FLBFlutterApplicationInterface.h
ios/Classes/Boost/FLBFlutterApplicationInterface.h
+1
-0
ios/Classes/Boost/FlutterBoostPlugin.h
ios/Classes/Boost/FlutterBoostPlugin.h
+13
-2
ios/Classes/Boost/FlutterBoostPlugin.m
ios/Classes/Boost/FlutterBoostPlugin.m
+15
-1
ios/Classes/Engine/FLBFlutterApplication.m
ios/Classes/Engine/FLBFlutterApplication.m
+11
-0
ios/Classes/Engine/FLBFlutterEngine.m
ios/Classes/Engine/FLBFlutterEngine.m
+0
-8
No files found.
ios/Classes/Boost/FLBFlutterApplicationInterface.h
View file @
4fc0510d
...
@@ -36,6 +36,7 @@ NS_ASSUME_NONNULL_BEGIN
...
@@ -36,6 +36,7 @@ NS_ASSUME_NONNULL_BEGIN
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
withEngine
:(
FlutterEngine
*
_Nullable
)
engine
withEngine
:(
FlutterEngine
*
_Nullable
)
engine
withPluginRegisterred
:(
BOOL
)
registerPlugin
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
-
(
FlutterViewController
*
)
flutterViewController
;
-
(
FlutterViewController
*
)
flutterViewController
;
...
...
ios/Classes/Boost/FlutterBoostPlugin.h
View file @
4fc0510d
...
@@ -32,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN
...
@@ -32,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN
+
(
instancetype
)
sharedInstance
;
+
(
instancetype
)
sharedInstance
;
/**
/**
* 初始化FlutterBoost混合栈环境。应在程序使用混合栈之前调用。如在AppDelegate中
* 初始化FlutterBoost混合栈环境。应在程序使用混合栈之前调用。如在AppDelegate中
。本函数默认需要flutter boost来注册所有插件。
*
*
* @param platform 平台层实现FLBPlatform的对象
* @param platform 平台层实现FLBPlatform的对象
* @param callback 启动之后回调
* @param callback 启动之后回调
...
@@ -40,7 +40,7 @@ NS_ASSUME_NONNULL_BEGIN
...
@@ -40,7 +40,7 @@ NS_ASSUME_NONNULL_BEGIN
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
/**
/**
* 初始化FlutterBoost混合栈环境。应在程序使用混合栈之前调用。如在AppDelegate中
* 初始化FlutterBoost混合栈环境。应在程序使用混合栈之前调用。如在AppDelegate中
。本函数默认需要flutter boost来注册所有插件。
*
*
* @param platform 平台层实现FLBPlatform的对象
* @param platform 平台层实现FLBPlatform的对象
* @param engine 外部实例化engine后传入
* @param engine 外部实例化engine后传入
...
@@ -50,6 +50,17 @@ NS_ASSUME_NONNULL_BEGIN
...
@@ -50,6 +50,17 @@ NS_ASSUME_NONNULL_BEGIN
engine
:(
FlutterEngine
*
_Nullable
)
engine
engine
:(
FlutterEngine
*
_Nullable
)
engine
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
/**
* 初始化FlutterBoost混合栈环境。应在程序使用混合栈之前调用。如在AppDelegate中。本函数可以控制是否需要flutter boost来注册所有插件
*
* @param platform 平台层实现FLBPlatform的对象
* @param engine 外部实例化engine后传入
* @param callback 启动之后回调
*/
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
engine
:(
FlutterEngine
*
_Nullable
)
engine
pluginRegisterred
:(
BOOL
)
registerPlugin
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
#pragma mark - Some properties.
#pragma mark - Some properties.
-
(
BOOL
)
isRunning
;
-
(
BOOL
)
isRunning
;
...
...
ios/Classes/Boost/FlutterBoostPlugin.m
View file @
4fc0510d
...
@@ -114,13 +114,26 @@
...
@@ -114,13 +114,26 @@
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
{
{
[
self
startFlutterWithPlatform
:
platform
engine
:
nil
onStart
:
callback
];
[
self
startFlutterWithPlatform
:
platform
engine:
nil
pluginRegisterred:
YES
onStart:
callback
];
}
}
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
engine
:(
FlutterEngine
*
_Nullable
)
engine
engine
:(
FlutterEngine
*
_Nullable
)
engine
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
{
{
[
self
startFlutterWithPlatform
:
platform
engine:
engine
pluginRegisterred:
YES
onStart:
callback
];
}
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
engine
:(
FlutterEngine
*
)
engine
pluginRegisterred
:(
BOOL
)
registerPlugin
onStart
:(
void
(
^
)(
FlutterEngine
*
_Nonnull
))
callback
{
static
dispatch_once_t
onceToken
;
static
dispatch_once_t
onceToken
;
__weak
__typeof__
(
self
)
weakSelf
=
self
;
__weak
__typeof__
(
self
)
weakSelf
=
self
;
dispatch_once
(
&
onceToken
,
^
{
dispatch_once
(
&
onceToken
,
^
{
...
@@ -129,6 +142,7 @@
...
@@ -129,6 +142,7 @@
self
.
application
=
[
self
->
_factory
createApplication
:
platform
];
self
.
application
=
[
self
->
_factory
createApplication
:
platform
];
[
self
.
application
startFlutterWithPlatform
:
platform
[
self
.
application
startFlutterWithPlatform
:
platform
withEngine:
engine
withEngine:
engine
withPluginRegisterred:
registerPlugin
onStart:
callback
];
onStart:
callback
];
});
});
}
}
...
...
ios/Classes/Engine/FLBFlutterApplication.m
View file @
4fc0510d
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
withEngine
:(
FlutterEngine
*
_Nullable
)
engine
withEngine
:(
FlutterEngine
*
_Nullable
)
engine
withPluginRegisterred
:(
BOOL
)
registerPlugin
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
{
{
static
dispatch_once_t
onceToken
;
static
dispatch_once_t
onceToken
;
...
@@ -58,6 +59,16 @@
...
@@ -58,6 +59,16 @@
self
.
platform
=
platform
;
self
.
platform
=
platform
;
self
.
viewProvider
=
[[
FLBFlutterEngine
alloc
]
initWithPlatform
:
platform
engine
:
engine
];
self
.
viewProvider
=
[[
FLBFlutterEngine
alloc
]
initWithPlatform
:
platform
engine
:
engine
];
self
.
isRunning
=
YES
;
self
.
isRunning
=
YES
;
if
(
registerPlugin
){
Class
clazz
=
NSClassFromString
(
@"GeneratedPluginRegistrant"
);
FlutterEngine
*
myengine
=
[
self
.
viewProvider
engine
];
if
(
clazz
&&
myengine
)
{
if
([
clazz
respondsToSelector
:
NSSelectorFromString
(
@"registerWithRegistry:"
)])
{
[
clazz
performSelector
:
NSSelectorFromString
(
@"registerWithRegistry:"
)
withObject:
myengine
];
}
}
}
if
(
callback
)
callback
(
self
.
viewProvider
.
engine
);
if
(
callback
)
callback
(
self
.
viewProvider
.
engine
);
});
});
}
}
...
...
ios/Classes/Engine/FLBFlutterEngine.m
View file @
4fc0510d
...
@@ -57,14 +57,6 @@
...
@@ -57,14 +57,6 @@
nibName:
nil
nibName:
nil
bundle:
nil
];
bundle:
nil
];
_dummy
.
name
=
kIgnoreMessageWithName
;
_dummy
.
name
=
kIgnoreMessageWithName
;
Class
clazz
=
NSClassFromString
(
@"GeneratedPluginRegistrant"
);
if
(
clazz
)
{
if
([
clazz
respondsToSelector
:
NSSelectorFromString
(
@"registerWithRegistry:"
)])
{
[
clazz
performSelector
:
NSSelectorFromString
(
@"registerWithRegistry:"
)
withObject:
_engine
];
}
}
}
}
return
self
;
return
self
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment