Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- MacOS
- FLUTTER
- Session
- JPA
- shorebird
- 이미지
- 개발자
- UIButton
- geofencing
- iOS16
- 웹뷰
- rxswift
- Apple
- Realm
- Firebase
- 한글
- Xcode
- Swift
- Notification
- window
- SwiftUI
- error
- github
- IOS
- Code
- appstore
- darkmode
- Git
- Archive
- mac
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Flutter ) OS 구분 - EEYatHo Flutter 본문
반응형
1. package:flutter/foundation.dart 사용
import 'package:flutter/foundation.dart';
if (defaultTargetPlatform == TargetPlatform.iOS) {
// ios
} else if (defaultTargetPlatform == TargetPlatform.android) {
// android
}
... /// fuchsia, linux, macOS, windows
2. dart:io 사용
import 'dart:io';
if (Platform.isIOS) {
// iOS
} else if (Platform.isAndroid) {
// android
}
... /// isLinux, isMacOS, isWindows, isFuchsia
'Flutter > Tip' 카테고리의 다른 글
Flutter ) 탭바 돌아와도 initState 안하기 - EEYatHo Flutter (0) | 2022.10.28 |
---|
Comments