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
fe0a669c
Unverified
Commit
fe0a669c
authored
Mar 02, 2020
by
LongCatIsLooong
Committed by
GitHub
Mar 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix sign (#51679)
parent
96003f91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
sliver.dart
packages/flutter/lib/src/rendering/sliver.dart
+1
-1
slivers_test.dart
packages/flutter/test/rendering/slivers_test.dart
+30
-0
No files found.
packages/flutter/lib/src/rendering/sliver.dart
View file @
fe0a669c
...
...
@@ -859,7 +859,7 @@ class SliverHitTestResult extends HitTestResult {
assert
(
crossAxisPosition
!=
null
);
assert
(
hitTest
!=
null
);
if
(
paintOffset
!=
null
)
{
pushTransform
(
Matrix4
.
translationValues
(
paintOffset
.
dx
,
paintOffset
.
dy
,
0
));
pushTransform
(
Matrix4
.
translationValues
(
-
paintOffset
.
dx
,
-
paintOffset
.
dy
,
0
));
}
final
bool
isHit
=
hitTest
(
this
,
...
...
packages/flutter/test/rendering/slivers_test.dart
View file @
fe0a669c
...
...
@@ -921,6 +921,36 @@ void main() {
mainAxisPositions
.
clear
();
crossAxisPositions
.
clear
();
});
test
(
'addWithAxisOffset with non zero paintOffset'
,
()
{
final
SliverHitTestResult
result
=
SliverHitTestResult
();
double
recordedMainAxisPosition
;
double
recordedCrossAxisPosition
;
final
HitTestEntry
entry
=
HitTestEntry
(
_DummyHitTestTarget
());
const
Offset
paintOffset
=
Offset
(
7
,
11
);
final
bool
isHit
=
result
.
addWithAxisOffset
(
paintOffset:
paintOffset
,
mainAxisOffset:
5.0
,
crossAxisOffset:
6.0
,
mainAxisPosition:
10.0
,
crossAxisPosition:
20.0
,
hitTest:
(
SliverHitTestResult
result
,
{
double
mainAxisPosition
,
double
crossAxisPosition
})
{
expect
(
result
,
isNotNull
);
recordedMainAxisPosition
=
mainAxisPosition
;
recordedCrossAxisPosition
=
crossAxisPosition
;
result
.
add
(
entry
);
return
true
;
},
);
expect
(
isHit
,
isTrue
);
expect
(
recordedMainAxisPosition
,
10.0
-
5.0
);
expect
(
recordedCrossAxisPosition
,
20.0
-
6.0
);
expect
(
entry
.
transform
..
translate
(
paintOffset
.
dx
,
paintOffset
.
dy
),
Matrix4
.
identity
(),
);
});
});
test
(
'SliverConstraints check for NaN on all double properties'
,
()
{
...
...
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