Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
496ef4f7
Unverified
Commit
496ef4f7
authored
Jul 09, 2020
by
chunhtai
Committed by
GitHub
Jul 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prevents sliver app bar from changing semantics tree when it is not necesaary (#61012)
parent
06b301cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
59 deletions
+38
-59
sliver_persistent_header.dart
...s/flutter/lib/src/rendering/sliver_persistent_header.dart
+1
-20
app_bar_test.dart
packages/flutter/test/material/app_bar_test.dart
+9
-11
sliver_semantics_test.dart
packages/flutter/test/widgets/sliver_semantics_test.dart
+28
-28
No files found.
packages/flutter/lib/src/rendering/sliver_persistent_header.dart
View file @
496ef4f7
...
...
@@ -258,27 +258,10 @@ abstract class RenderSliverPersistentHeader extends RenderSliver with RenderObje
}
}
/// Whether the [SemanticsNode]s associated with this [RenderSliver] should
/// be excluded from the semantic scrolling area.
///
/// [RenderSliver]s that stay on the screen even though the user has scrolled
/// past them (e.g. a pinned app bar) should set this to true.
@protected
bool
get
excludeFromSemanticsScrolling
=>
_excludeFromSemanticsScrolling
;
bool
_excludeFromSemanticsScrolling
=
false
;
set
excludeFromSemanticsScrolling
(
bool
value
)
{
if
(
_excludeFromSemanticsScrolling
==
value
)
return
;
_excludeFromSemanticsScrolling
=
value
;
markNeedsSemanticsUpdate
();
}
@override
void
describeSemanticsConfiguration
(
SemanticsConfiguration
config
)
{
super
.
describeSemanticsConfiguration
(
config
);
if
(
_excludeFromSemanticsScrolling
)
config
.
addTagForChildren
(
RenderViewport
.
excludeFromScrolling
);
config
.
addTagForChildren
(
RenderViewport
.
excludeFromScrolling
);
}
@override
...
...
@@ -375,7 +358,6 @@ abstract class RenderSliverPinnedPersistentHeader extends RenderSliverPersistent
final
SliverConstraints
constraints
=
this
.
constraints
;
final
double
maxExtent
=
this
.
maxExtent
;
final
bool
overlapsContent
=
constraints
.
overlap
>
0.0
;
excludeFromSemanticsScrolling
=
overlapsContent
||
(
constraints
.
scrollOffset
>
maxExtent
-
minExtent
);
layoutChild
(
constraints
.
scrollOffset
,
maxExtent
,
overlapsContent:
overlapsContent
);
final
double
effectiveRemainingPaintExtent
=
math
.
max
(
0
,
constraints
.
remainingPaintExtent
-
constraints
.
overlap
);
final
double
layoutExtent
=
(
maxExtent
-
constraints
.
scrollOffset
).
clamp
(
0.0
,
effectiveRemainingPaintExtent
)
as
double
;
...
...
@@ -575,7 +557,6 @@ abstract class RenderSliverFloatingPersistentHeader extends RenderSliverPersiste
}
else
{
_effectiveScrollOffset
=
constraints
.
scrollOffset
;
}
excludeFromSemanticsScrolling
=
_effectiveScrollOffset
<=
constraints
.
scrollOffset
;
final
bool
overlapsContent
=
_effectiveScrollOffset
<
constraints
.
scrollOffset
;
layoutChild
(
...
...
packages/flutter/test/material/app_bar_test.dart
View file @
496ef4f7
...
...
@@ -1647,22 +1647,20 @@ void main() {
TestSemantics
(
children:
<
TestSemantics
>[
TestSemantics
(
flags:
<
SemanticsFlag
>[
SemanticsFlag
.
hasImplicitScrolling
],
children:
<
TestSemantics
>[
TestSemantics
(
children:
<
TestSemantics
>[
TestSemantics
(
label:
'Leading'
,
textDirection:
TextDirection
.
ltr
,
),
TestSemantics
(
label:
'Action 1'
,
textDirection:
TextDirection
.
ltr
,
),
],
label:
'Leading'
,
textDirection:
TextDirection
.
ltr
,
),
TestSemantics
(
label:
'Action 1'
,
textDirection:
TextDirection
.
ltr
,
),
],
),
TestSemantics
(
flags:
<
SemanticsFlag
>[
SemanticsFlag
.
hasImplicitScrolling
],
),
],
),
],
...
...
packages/flutter/test/widgets/sliver_semantics_test.dart
View file @
496ef4f7
...
...
@@ -79,6 +79,20 @@ void _tests() {
TestSemantics
(
id:
2
,
children:
<
TestSemantics
>[
TestSemantics
(
id:
7
,
children:
<
TestSemantics
>[
TestSemantics
(
id:
8
,
flags:
<
SemanticsFlag
>[
SemanticsFlag
.
namesRoute
,
SemanticsFlag
.
isHeader
,
],
label:
'Semantics Test with Slivers'
,
textDirection:
TextDirection
.
ltr
,
),
],
),
TestSemantics
(
id:
9
,
flags:
<
SemanticsFlag
>[
...
...
@@ -86,20 +100,6 @@ void _tests() {
],
actions:
<
SemanticsAction
>[
SemanticsAction
.
scrollUp
],
children:
<
TestSemantics
>[
TestSemantics
(
id:
7
,
children:
<
TestSemantics
>[
TestSemantics
(
id:
8
,
flags:
<
SemanticsFlag
>[
SemanticsFlag
.
namesRoute
,
SemanticsFlag
.
isHeader
,
],
label:
'Semantics Test with Slivers'
,
textDirection:
TextDirection
.
ltr
,
),
],
),
TestSemantics
(
id:
3
,
label:
'Item 0'
,
...
...
@@ -226,6 +226,20 @@ void _tests() {
TestSemantics
(
id:
2
,
children:
<
TestSemantics
>[
TestSemantics
(
id:
7
,
children:
<
TestSemantics
>[
TestSemantics
(
id:
8
,
flags:
<
SemanticsFlag
>[
SemanticsFlag
.
namesRoute
,
SemanticsFlag
.
isHeader
,
],
label:
'Semantics Test with Slivers'
,
textDirection:
TextDirection
.
ltr
,
),
],
),
TestSemantics
(
id:
9
,
flags:
<
SemanticsFlag
>[
...
...
@@ -236,20 +250,6 @@ void _tests() {
SemanticsAction
.
scrollDown
,
],
children:
<
TestSemantics
>[
TestSemantics
(
id:
7
,
children:
<
TestSemantics
>[
TestSemantics
(
id:
8
,
flags:
<
SemanticsFlag
>[
SemanticsFlag
.
namesRoute
,
SemanticsFlag
.
isHeader
,
],
label:
'Semantics Test with Slivers'
,
textDirection:
TextDirection
.
ltr
,
),
],
),
TestSemantics
(
id:
3
,
label:
'Item 0'
,
...
...
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