Getting Started
Thermion requires the Flutter stable channel with native assets enabled.
- Switch to the Flutter stable channel, upgrade Flutter, create a new project, then add
thermion_flutteras a dependency
$ flutter channel stable$ flutter upgrade$ flutter config --enable-native-assets$ cd your_flutter_project$ flutter pub add thermion_flutter- If running on iOS or macOS, change the minimum deployment target to 13.0
iOS and macOS instructions
Make sure the platform entry refers to 13.0 in your Podfile.
In macos/Podfile (for macOS):
platform :osx, '13.0'In ios/Podfile, (for iOS):
platform :ios, '13.0'Then open XCode:
open macos/Runner.xcworkspaceand change the minimum deployment target to 13.0:

