Skip to content

Instantly share code, notes, and snippets.

@chunhunghan
Last active June 28, 2019 03:28
Show Gist options
  • Select an option

  • Save chunhunghan/34b993428684e26468e19547106acae0 to your computer and use it in GitHub Desktop.

Select an option

Save chunhunghan/34b993428684e26468e19547106acae0 to your computer and use it in GitHub Desktop.
import 'dart:io' show Platform;
if (Platform.isAndroid) {
// Android-specific code
} else if (Platform.isIOS) {
// iOS-specific code
}
/*
Other options include:
Platform.isFuchsia
Platform.isLinux
Platform.isMacOS
Platform.isWindows
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment