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
3397338c
Unverified
Commit
3397338c
authored
Jul 10, 2018
by
Leaf Petersen
Committed by
GitHub
Jul 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix use of Future<void> as a Future<bool> (#18843)
* Fix use of Future<void> as a Future<bool>
parent
127d1f85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ios_emulators.dart
packages/flutter_tools/lib/src/ios/ios_emulators.dart
+4
-4
No files found.
packages/flutter_tools/lib/src/ios/ios_emulators.dart
View file @
3397338c
...
...
@@ -37,7 +37,7 @@ class IOSEmulator extends Emulator {
@override
Future
<
void
>
launch
()
async
{
Future
<
void
>
launchSimulator
(
List
<
String
>
additionalArgs
)
async
{
Future
<
bool
>
launchSimulator
(
List
<
String
>
additionalArgs
)
async
{
final
List
<
String
>
args
=
<
String
>[
'open'
]
.
followedBy
(
additionalArgs
)
.
followedBy
(<
String
>[
'-a'
,
getSimulatorPath
()]);
...
...
@@ -52,11 +52,11 @@ class IOSEmulator extends Emulator {
// First run with `-n` to force a device to boot if there isn't already one
if
(!
await
launchSimulator
(<
String
>[
'-n'
]))
return
false
;
return
;
// Run again to force it to Foreground (using -n doesn't force existing
// devices to the foreground)
return
launchSimulator
(<
String
>[]);
await
launchSimulator
(<
String
>[]);
}
}
...
...
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