Check ios or android platform in Flutter
When building a cross-platform app, you want to re-use as much code as possible across platforms. However, scenarios might arise where it makes sense for the code to be different depending on the OS. This requires a separate implementation by declaring a specific platform. In Flutter, use the following implementation:
final platform = Theme.of(context).platform; if (platform == TargetPlatform.iOS) { return 'iOS'; } if (platform == TargetPlatform.android) { return 'android'; } if (platform == TargetPlatform.fuchsia) { return 'fuchsia'; } return 'not recognized ';
Search within Codexpedia
Custom Search
Search the entire web
Custom Search
Related Posts