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
0
Merge Requests
0
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
87532b11
Commit
87532b11
authored
Dec 06, 2019
by
余玠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support external initialized flutter engine
parent
be169943
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
5 deletions
+31
-5
ios/Classes/Boost/FLBFlutterApplicationInterface.h
ios/Classes/Boost/FLBFlutterApplicationInterface.h
+1
-0
ios/Classes/Boost/FlutterBoostPlugin.h
ios/Classes/Boost/FlutterBoostPlugin.h
+12
-0
ios/Classes/Boost/FlutterBoostPlugin.m
ios/Classes/Boost/FlutterBoostPlugin.m
+8
-0
ios/Classes/Engine/FLBFlutterApplication.m
ios/Classes/Engine/FLBFlutterApplication.m
+2
-1
ios/Classes/Engine/FLBFlutterEngine.h
ios/Classes/Engine/FLBFlutterEngine.h
+1
-1
ios/Classes/Engine/FLBFlutterEngine.m
ios/Classes/Engine/FLBFlutterEngine.m
+7
-3
No files found.
ios/Classes/Boost/FLBFlutterApplicationInterface.h
View file @
87532b11
...
...
@@ -35,6 +35,7 @@ NS_ASSUME_NONNULL_BEGIN
-
(
id
<
FLBFlutterProvider
>
)
flutterProvider
;
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
withEngine
:(
FlutterEngine
*
_Nullable
)
engine
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
-
(
FlutterViewController
*
)
flutterViewController
;
...
...
ios/Classes/Boost/FlutterBoostPlugin.h
View file @
87532b11
...
...
@@ -26,6 +26,7 @@
#import "FLBPlatform.h"
#import "FLBTypes.h"
NS_ASSUME_NONNULL_BEGIN
@interface
FlutterBoostPlugin
:
NSObject
<
FlutterPlugin
>
#pragma mark - Initializer
+
(
instancetype
)
sharedInstance
;
...
...
@@ -38,6 +39,16 @@
*/
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
/**
* 初始化FlutterBoost混合栈环境。应在程序使用混合栈之前调用。如在AppDelegate中
*
* @param platform 平台层实现FLBPlatform的对象
* @param engine 外部实例化engine后传入
* @param callback 启动之后回调
*/
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
engine
:(
FlutterEngine
*
_Nullable
)
engine
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
#pragma mark - Some properties.
-
(
BOOL
)
isRunning
;
...
...
@@ -109,3 +120,4 @@
onPageFinished
:(
void
(
^
)(
NSDictionary
*
))
resultCallback
completion
:(
void
(
^
)(
BOOL
))
completion
;
@end
NS_ASSUME_NONNULL_END
ios/Classes/Boost/FlutterBoostPlugin.m
View file @
87532b11
...
...
@@ -113,6 +113,13 @@
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
{
[
self
startFlutterWithPlatform
:
platform
engine
:
nil
onStart
:
callback
];
}
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
engine
:(
FlutterEngine
*
_Nullable
)
engine
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
;
{
static
dispatch_once_t
onceToken
;
__weak
__typeof__
(
self
)
weakSelf
=
self
;
...
...
@@ -121,6 +128,7 @@
self
.
factory
=
FLBFactory
.
new
;
self
.
application
=
[
self
->
_factory
createApplication
:
platform
];
[
self
.
application
startFlutterWithPlatform
:
platform
withEngine:
engine
onStart:
callback
];
});
}
...
...
ios/Classes/Engine/FLBFlutterApplication.m
View file @
87532b11
...
...
@@ -50,12 +50,13 @@
}
-
(
void
)
startFlutterWithPlatform
:(
id
<
FLBPlatform
>
)
platform
withEngine
:(
FlutterEngine
*
_Nullable
)
engine
onStart
:(
void
(
^
)(
FlutterEngine
*
engine
))
callback
{
static
dispatch_once_t
onceToken
;
dispatch_once
(
&
onceToken
,
^
{
self
.
platform
=
platform
;
self
.
viewProvider
=
[[
FLBFlutterEngine
alloc
]
initWithPlatform
:
platform
];
self
.
viewProvider
=
[[
FLBFlutterEngine
alloc
]
initWithPlatform
:
platform
engine
:
engine
];
self
.
isRunning
=
YES
;
if
(
callback
)
callback
(
self
.
viewProvider
.
engine
);
});
...
...
ios/Classes/Engine/FLBFlutterEngine.h
View file @
87532b11
...
...
@@ -28,6 +28,6 @@
NS_ASSUME_NONNULL_BEGIN
@interface
FLBFlutterEngine
:
NSObject
<
FLBFlutterProvider
>
-
(
instancetype
)
initWithPlatform
:(
id
<
FLBPlatform
>
_Nullable
)
platform
;
-
(
instancetype
)
initWithPlatform
:(
id
<
FLBPlatform
>
_Nullable
)
platform
engine
:(
FlutterEngine
*
_Nullable
)
engine
;
@end
NS_ASSUME_NONNULL_END
ios/Classes/Engine/FLBFlutterEngine.m
View file @
87532b11
...
...
@@ -35,13 +35,17 @@
@implementation
FLBFlutterEngine
-
(
instancetype
)
initWithPlatform
:(
id
<
FLBPlatform
>
_Nullable
)
platform
-
(
instancetype
)
initWithPlatform
:(
id
<
FLBPlatform
>
_Nullable
)
platform
engine
:(
FlutterEngine
*
_Nullable
)
engine
{
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
if
(
self
=
[
super
init
])
{
_engine
=
[[
FlutterEngine
alloc
]
initWithName
:
@"io.flutter"
project
:
nil
];
if
(
!
engine
){
_engine
=
[[
FlutterEngine
alloc
]
initWithName
:
@"io.flutter"
project
:
nil
];
}
else
{
_engine
=
engine
;
}
if
(
platform
&&
[
platform
respondsToSelector
:
@selector
(
entryForDart
)]
&&
platform
.
entryForDart
){
...
...
@@ -69,7 +73,7 @@
-
(
instancetype
)
init
{
return
[
self
initWithPlatform
:
nil
];
return
[
self
initWithPlatform
:
nil
engine
:
nil
];
}
-
(
void
)
pause
...
...
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