https://stackoverflow.com/questions/45924474/how-do-you-detect-the-host-platform-from-dart-code
import 'dart:io' show Platform;
if (Platform.isAndroid) {
// Android-specific code
} else if (Platform.isIOS) {
// iOS-specific code
}
Platform.isAndroid
Platform.isFuchsia
Platform.isIOS
Platform.isLinux
Platform.isMacOS
Platform.isWindows
'App > Flutter' 카테고리의 다른 글
[ FLUTTER ] INPUT 정규식 ( feat. 천지인 ) (0) | 2021.10.12 |
---|---|
[ FLUTTER ] 플러터 예제 모음 (0) | 2021.10.05 |
[ FLUTTER ] 햄버거버튼 만들기 (0) | 2021.10.02 |
[ FLUTTER ] 이미지 사이즈비율 조정하기 (0) | 2021.10.01 |
[ FLUTTER ] Dart 소수, 정수 처리 (0) | 2021.09.30 |