Flutter: Is there any way of using a widget only on ios but not on android?

Issue

So I have been trying to add some padding only on ios but not on andoid. Is there any way to check if I am in android or ios so I can implement this feature in my app. Thanks in Advance.

Solution

Just use Platform.operatingSystem from the io library.

The output is a string which is:

  • "ios" for IOS
  • "android" for Android

You can also use Platform.isIOS or Platform.isAndroid directly.

Answered By – Lulupointu

Answer Checked By – Mary Flores (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *