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
116d6579
Unverified
Commit
116d6579
authored
May 31, 2022
by
Jason Simmons
Committed by
GitHub
May 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove remaining uses of hashValues in the framework (#105046)
parent
588f1c93
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
theme_data.dart
packages/flutter/lib/src/material/theme_data.dart
+2
-2
basic_types.dart
packages/flutter/lib/src/painting/basic_types.dart
+2
-2
selection.dart
packages/flutter/lib/src/rendering/selection.dart
+2
-2
No files found.
packages/flutter/lib/src/material/theme_data.dart
View file @
116d6579
...
@@ -2148,8 +2148,8 @@ class ThemeData with Diagnosticable {
...
@@ -2148,8 +2148,8 @@ class ThemeData with Diagnosticable {
// GENERAL CONFIGURATION
// GENERAL CONFIGURATION
applyElevationOverlayColor
,
applyElevationOverlayColor
,
cupertinoOverrideTheme
,
cupertinoOverrideTheme
,
hashList
(
extensions
.
keys
)
,
...
extensions
.
keys
,
hashList
(
extensions
.
values
)
,
...
extensions
.
values
,
inputDecorationTheme
,
inputDecorationTheme
,
materialTapTargetSize
,
materialTapTargetSize
,
pageTransitionsTheme
,
pageTransitionsTheme
,
...
...
packages/flutter/lib/src/painting/basic_types.dart
View file @
116d6579
...
@@ -43,8 +43,8 @@ export 'dart:ui' show
...
@@ -43,8 +43,8 @@ export 'dart:ui' show
VertexMode
,
VertexMode
,
// TODO(werainkhatri): remove these after their deprecation period in engine
// TODO(werainkhatri): remove these after their deprecation period in engine
// https://github.com/flutter/flutter/pull/99505
// https://github.com/flutter/flutter/pull/99505
hashValues
,
hashValues
,
// ignore: deprecated_member_use
hashList
;
hashList
;
// ignore: deprecated_member_use
export
'package:flutter/foundation.dart'
show
VoidCallback
;
export
'package:flutter/foundation.dart'
show
VoidCallback
;
...
...
packages/flutter/lib/src/rendering/selection.dart
View file @
116d6579
...
@@ -523,7 +523,7 @@ class SelectionGeometry {
...
@@ -523,7 +523,7 @@ class SelectionGeometry {
@override
@override
int
get
hashCode
{
int
get
hashCode
{
return
hashValues
(
return
Object
.
hash
(
startSelectionPoint
,
startSelectionPoint
,
endSelectionPoint
,
endSelectionPoint
,
status
,
status
,
...
@@ -574,7 +574,7 @@ class SelectionPoint {
...
@@ -574,7 +574,7 @@ class SelectionPoint {
@override
@override
int
get
hashCode
{
int
get
hashCode
{
return
hashValues
(
return
Object
.
hash
(
localPosition
,
localPosition
,
lineHeight
,
lineHeight
,
handleType
,
handleType
,
...
...
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