Can Google Flutter target iOS and Android in one app

645

If you want to create separate iOs and Android "looks", you can use a plugin like this one:

https://pub.dartlang.org/packages/flutter_platform_widgets#-readme-tab-

You have full control over which parts of your UI should be platform-specific, and which parts you want to keep uniform. For example, you can create your own custom button instead of using Cupertino button on iOs and RaisedButton on Android, but you may want to use different TextField widgets on iOs and Android.

Share:
645
Martin Andersen
Author by

Martin Andersen

Updated on December 08, 2022

Comments

  • Martin Andersen
    Martin Andersen over 1 year

    In Ionic I can build one app and at runtime Ionic choose the right skin Cupertino or Android.

    Can Flutter do the same? I have read the documentation but I can't see any wrappers around the Android and Cupertino widgets.