Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 228 Bytes

platform-specific-code.md

File metadata and controls

17 lines (12 loc) · 228 Bytes

import Example from '../components/md/Example';

import 'dart:io' show Platform;

if (Platform.isIOS) {
  doSmthIOSSpecific();
}

if (Platform.isAndroid) {
  doSmthAndroidSpecific();
}