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
7a413e71
Unverified
Commit
7a413e71
authored
Jan 19, 2021
by
Kate Lovett
Committed by
GitHub
Jan 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expand Stack fix to more exporting libraries (#74077)
parent
e9a91521
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
2 deletions
+22
-2
fix_data.yaml
packages/flutter/lib/fix_data.yaml
+2
-2
cupertino.dart
packages/flutter/test_fixes/cupertino.dart
+5
-0
cupertino.dart.expect
packages/flutter/test_fixes/cupertino.dart.expect
+5
-0
material.dart
packages/flutter/test_fixes/material.dart
+5
-0
material.dart.expect
packages/flutter/test_fixes/material.dart.expect
+5
-0
No files found.
packages/flutter/lib/fix_data.yaml
View file @
7a413e71
...
...
@@ -365,7 +365,7 @@ transforms:
-
title
:
'
Migrate
to
clipBehavior'
date
:
2020-09-22
element
:
uris
:
[
'
widgets.dart'
]
uris
:
[
'
widgets.dart'
,
'
material.dart'
,
'
cupertino.dart'
]
field
:
'
overflow'
inClass
:
'
Stack'
changes
:
...
...
@@ -376,7 +376,7 @@ transforms:
-
title
:
'
Migrate
to
clipBehavior'
date
:
2020-09-22
element
:
uris
:
[
'
widgets.dart'
]
uris
:
[
'
widgets.dart'
,
'
material.dart'
,
'
cupertino.dart'
]
constructor
:
'
'
inClass
:
'
Stack'
oneOf
:
...
...
packages/flutter/test_fixes/cupertino.dart
View file @
7a413e71
...
...
@@ -28,6 +28,11 @@ void main() {
buildContext
.
rootAncestorStateOfType
(
TypeMatcher
<
targetType
>());
buildContext
.
ancestorRenderObjectOfType
(
TypeMatcher
<
targetType
>());
// Changes made in https://github.com/flutter/flutter/pull/66305
const
Stack
stack
=
Stack
(
overflow:
Overflow
.
visible
);
const
Stack
stack
=
Stack
(
overflow:
Overflow
.
clip
);
final
behavior
=
stack
.
overflow
;
// Changes made in https://github.com/flutter/flutter/pull/61648
const
Form
form
=
Form
(
autovalidate:
true
);
const
Form
form
=
Form
(
autovalidate:
false
);
...
...
packages/flutter/test_fixes/cupertino.dart.expect
View file @
7a413e71
...
...
@@ -28,6 +28,11 @@ void main() {
buildContext.findRootAncestorStateOfType<targetType>();
buildContext.findAncestorRenderObjectOfType<targetType>();
// Changes made in https://github.com/flutter/flutter/pull/66305
const Stack stack = Stack(clipBehavior: Clip.none);
const Stack stack = Stack(clipBehavior: Clip.hardEdge);
final behavior = stack.clipBehavior;
// Changes made in https://github.com/flutter/flutter/pull/61648
const Form form = Form(autovalidateMode: AutoValidateMode.always);
const Form form = Form(autovalidateMode: AutoValidateMode.disabled);
...
...
packages/flutter/test_fixes/material.dart
View file @
7a413e71
...
...
@@ -27,6 +27,11 @@ void main() {
buildContext
.
rootAncestorStateOfType
(
TypeMatcher
<
targetType
>());
buildContext
.
ancestorRenderObjectOfType
(
TypeMatcher
<
targetType
>());
// Changes made in https://github.com/flutter/flutter/pull/66305
const
Stack
stack
=
Stack
(
overflow:
Overflow
.
visible
);
const
Stack
stack
=
Stack
(
overflow:
Overflow
.
clip
);
final
behavior
=
stack
.
overflow
;
// Changes made in https://github.com/flutter/flutter/pull/61648
const
Form
form
=
Form
(
autovalidate:
true
);
const
Form
form
=
Form
(
autovalidate:
false
);
...
...
packages/flutter/test_fixes/material.dart.expect
View file @
7a413e71
...
...
@@ -27,6 +27,11 @@ void main() {
buildContext.findRootAncestorStateOfType<targetType>();
buildContext.findAncestorRenderObjectOfType<targetType>();
// Changes made in https://github.com/flutter/flutter/pull/66305
const Stack stack = Stack(clipBehavior: Clip.none);
const Stack stack = Stack(clipBehavior: Clip.hardEdge);
final behavior = stack.clipBehavior;
// Changes made in https://github.com/flutter/flutter/pull/61648
const Form form = Form(autovalidateMode: AutoValidateMode.always);
const Form form = Form(autovalidateMode: AutoValidateMode.disabled);
...
...
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