flutterdartflutter-platform-channel

How do you detect the host platform from flutter dart?


For UI that should differ slightly on iOS and Android, ?


Solution

  • import 'dart:io' show Platform;
    

    Now you can detect the platform by just doing

    Platform.isIOS // for ios
    Platform.isAndroid //for android