September 2019
Beginner
512 pages
12h 52m
English
In the early versions of the platform views features, it was only supported on Android. At the time of writing this book, the iOS implementation of embedding UIKitView is still in release preview. So, we need to change the application's ios/Runner/Info.plist file and add a specific setting:
<plist version="1.0"><dict> ... <key>io.flutter.embedded_views_preview</key> <string>YES</string></dict></plist>
This will enable the functionality for iOS apps so that we can use the preview feature in our application.
Read now
Unlock full access