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
5c381254
Unverified
Commit
5c381254
authored
Oct 05, 2022
by
stuartmorgan
Committed by
GitHub
Oct 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wait for non-empty layout in platform view placeholder (#112402)
parent
4862a84b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
4 deletions
+51
-4
platform_view.dart
packages/flutter/lib/src/widgets/platform_view.dart
+3
-3
fake_platform_views.dart
packages/flutter/test/services/fake_platform_views.dart
+3
-0
platform_view_test.dart
packages/flutter/test/widgets/platform_view_test.dart
+45
-1
No files found.
packages/flutter/lib/src/widgets/platform_view.dart
View file @
5c381254
...
...
@@ -877,10 +877,10 @@ class _PlatformViewLinkState extends State<PlatformViewLink> {
return
const
SizedBox
.
expand
();
}
if
(!
_platformViewCreated
)
{
// Depending on the implementation, the
initial size can be used to size
// the platform view.
// Depending on the implementation, the
first non-empty size can be used
// t
o size t
he platform view.
return
_PlatformViewPlaceHolder
(
onLayout:
(
Size
size
)
{
if
(
controller
.
awaitingCreation
)
{
if
(
controller
.
awaitingCreation
&&
!
size
.
isEmpty
)
{
controller
.
create
(
size:
size
);
}
});
...
...
packages/flutter/test/services/fake_platform_views.dart
View file @
5c381254
...
...
@@ -133,6 +133,9 @@ class FakeAndroidViewController implements AndroidViewController {
@override
Future
<
void
>
create
({
Size
?
size
})
async
{
assert
(!
_createCalledSuccessfully
);
if
(
requiresSize
&&
size
!=
null
)
{
assert
(!
size
.
isEmpty
);
}
_createCalledSuccessfully
=
size
!=
null
||
!
requiresSize
;
}
...
...
packages/flutter/test/widgets/platform_view_test.dart
View file @
5c381254
...
...
@@ -2502,6 +2502,48 @@ void main() {
},
);
testWidgets
(
'PlatformViewLink widget should not trigger creation with an empty size'
,
(
WidgetTester
tester
)
async
{
late
PlatformViewController
controller
;
final
Widget
widget
=
Center
(
child:
SizedBox
(
height:
0
,
child:
PlatformViewLink
(
viewType:
'webview'
,
onCreatePlatformView:
(
PlatformViewCreationParams
params
)
{
controller
=
FakeAndroidViewController
(
params
.
id
,
requiresSize:
true
);
controller
.
create
();
// This test should be simulating one of the texture-based display
// modes, where `create` is a no-op when not provided a size, and
// creation is triggered via a later call to setSize, or to `create`
// with a size.
expect
(
controller
.
awaitingCreation
,
true
);
return
controller
;
},
surfaceFactory:
(
BuildContext
context
,
PlatformViewController
controller
)
{
return
PlatformViewSurface
(
gestureRecognizers:
const
<
Factory
<
OneSequenceGestureRecognizer
>>{},
controller:
controller
,
hitTestBehavior:
PlatformViewHitTestBehavior
.
opaque
,
);
},
)
));
await
tester
.
pumpWidget
(
widget
);
expect
(
tester
.
allWidgets
.
map
((
Widget
widget
)
=>
widget
.
runtimeType
.
toString
()).
toList
(),
equals
(<
String
>[
'Center'
,
'SizedBox'
,
'PlatformViewLink'
,
'_PlatformViewPlaceHolder'
]),
);
// 'create' should not have been called by PlatformViewLink, since its
// size is empty.
expect
(
controller
.
awaitingCreation
,
true
);
},
);
testWidgets
(
'PlatformViewLink calls create when needed for Android texture display modes'
,
(
WidgetTester
tester
)
async
{
...
...
@@ -2541,6 +2583,9 @@ void main() {
equals
(<
String
>[
'PlatformViewLink'
,
'_PlatformViewPlaceHolder'
]),
);
// Layout should have triggered a create call. Simulate the callback
// that the real controller would make after creation.
expect
(
controller
.
awaitingCreation
,
false
);
onPlatformViewCreatedCallBack
(
createdPlatformViewId
);
await
tester
.
pump
();
...
...
@@ -2551,7 +2596,6 @@ void main() {
);
expect
(
createdPlatformViewId
,
currentViewId
+
1
);
expect
(
controller
.
awaitingCreation
,
false
);
},
);
...
...
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