Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
flutter_screenutil
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Mounir Bouaiche
2023-06-11 22:25:25 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f1573b371cf10b4c6c594f3082cf93ff66449e46
f1573b37
1 parent
dcdde7ed
Fix ensureScreenSize on web
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/src/screen_util.dart
lib/src/screen_util.dart
View file @
f1573b3
...
...
@@ -64,7 +64,7 @@ class ScreenUtil {
window
=
binding
.
platformDispatcher
.
implicitView
;
}
if
(
window
==
null
||
window
!.
physical
Geometry
.
isEmpty
)
{
if
(
window
==
null
||
window
!.
physical
Size
.
isEmpty
)
{
return
Future
.
delayed
(
duration
,
()
=>
true
);
}
...
...
Please
register
or
login
to post a comment