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
7799ceff
Commit
7799ceff
authored
Jul 16, 2019
by
Yacumima
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dev
parent
8082f94d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
6 deletions
+19
-6
lib/channel/boost_channel.dart
lib/channel/boost_channel.dart
+2
-0
lib/container/container_coordinator.dart
lib/container/container_coordinator.dart
+17
-6
No files found.
lib/channel/boost_channel.dart
View file @
7799ceff
...
@@ -51,6 +51,8 @@ class BoostChannel {
...
@@ -51,6 +51,8 @@ class BoostChannel {
handler
(
call
);
handler
(
call
);
}
}
}
}
return
Future
.
value
();
});
});
}
}
...
...
lib/container/container_coordinator.dart
View file @
7799ceff
...
@@ -22,8 +22,10 @@
...
@@ -22,8 +22,10 @@
* THE SOFTWARE.
* THE SOFTWARE.
*/
*/
import
'dart:async'
;
import
'dart:async'
;
import
'dart:io'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/semantics.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
import
'../channel/boost_channel.dart'
;
import
'../channel/boost_channel.dart'
;
import
'boost_container.dart'
;
import
'boost_container.dart'
;
...
@@ -44,13 +46,9 @@ class ContainerCoordinator {
...
@@ -44,13 +46,9 @@ class ContainerCoordinator {
_instance
=
this
;
_instance
=
this
;
channel
.
addEventListener
(
"lifecycle"
,
channel
.
addEventListener
(
"lifecycle"
,
(
String
name
,
Map
arguments
)
{
(
String
name
,
Map
arguments
)
=>
_onChannelEvent
(
arguments
));
_onChannelEvent
(
arguments
);
});
channel
.
addMethodHandler
((
MethodCall
call
)
{
channel
.
addMethodHandler
((
MethodCall
call
)
=>
_onMethodCall
(
call
));
return
_onMethodCall
(
call
);
});
}
}
BoostContainerSettings
_createContainerSettings
(
BoostContainerSettings
_createContainerSettings
(
...
@@ -215,6 +213,19 @@ class ContainerCoordinator {
...
@@ -215,6 +213,19 @@ class ContainerCoordinator {
FlutterBoost
.
containerManager
FlutterBoost
.
containerManager
?.
showContainer
(
_createContainerSettings
(
name
,
params
,
pageId
));
?.
showContainer
(
_createContainerSettings
(
name
,
params
,
pageId
));
//在Android上对无障碍辅助模式的兼容
if
(
Platform
.
isAndroid
)
{
try
{
final
SemanticsOwner
owner
=
WidgetsBinding
.
instance
.
pipelineOwner
.
semanticsOwner
;
final
SemanticsNode
root
=
owner
.
rootSemanticsNode
;
root
?.
detach
();
root
?.
attach
(
owner
);
}
catch
(
e
)
{
assert
(
false
,
e
.
toString
());
}
}
performContainerLifeCycle
(
_createContainerSettings
(
name
,
params
,
pageId
),
performContainerLifeCycle
(
_createContainerSettings
(
name
,
params
,
pageId
),
ContainerLifeCycle
.
Appear
);
ContainerLifeCycle
.
Appear
);
...
...
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