1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

fix ios install (#479)

To use this plugin on iOS you need to opt-in for the embedded views preview by adding a boolean property to the app's Info.plist file, with the key io.flutter.embedded_views_preview and the value YES.

<key>io.flutter.embedded_views_preview</key>
<true/>
This commit is contained in:
Rubens de Melo
2020-06-22 00:31:54 -03:00
committed by GitHub
parent 9c52aad538
commit 09b26f89b4

View File

@@ -41,5 +41,7 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>io.flutter.embedded_views_preview</key>
<true/>
</dict>
</plist>