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
ff4aee43
Commit
ff4aee43
authored
May 21, 2020
by
Luke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复iOS 无障碍问题
flutter 页面 连续push的时候,后面的flutter页面的voice over焦点会丢失
parent
a33d3c92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
lib/container/container_coordinator.dart
lib/container/container_coordinator.dart
+9
-11
No files found.
lib/container/container_coordinator.dart
View file @
ff4aee43
...
...
@@ -225,17 +225,15 @@ class ContainerCoordinator {
FlutterBoost
.
containerManager
?.
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
());
}
//对无障碍辅助模式的兼容
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
),
...
...
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