根据平台获取对应数据, 来源于 ReactNative
的 Platform module
🔩 安装
在 pubspec.yaml
添加依赖
dependencies:
flutter_platform_selector: <last_version>
🔨 使用
Text(PlatformSelector.select(
ios: 'iOS',
android: 'Android',
fuchsia: 'Fuchsia',
desktop: 'Desktop',
web: 'Web'));
Refer to the Changelog to get all release notes.