documentation

This commit is contained in:
Nick Fisher
2024-06-17 12:01:30 +08:00
parent 97e1198b5c
commit 3c20b2aa6b

View File

@@ -11,15 +11,22 @@ $ flutter create thermion_sample_project && cd thermion_sample_project
$ flutter pub add thermion_flutter $ flutter pub add thermion_flutter
``` ```
2. If running on MacOS, change the minimum deployment target to OSX 13 2. If running on iOS or MacOS, change the minimum deployment target to OSX 13
<Accordion title="Click to expand MacOS instructions"> <Accordion title="Click to iOS/MacOS instructions">
In `macos/Podfile`, make sure the `platform` entry refers to `13.0`. Make sure the `platform` entry refers to `13.0` in your Podfile.
In `macos/Podfile` (for macOS):
``` ```
platform :osx, '13.0' platform :osx, '13.0'
``` ```
In `ios/Podfile`, (for iOS):
```
platform :ios, '13.0'
```
Then open XCode: Then open XCode:
``` ```
open macos/Runner.xcworkspace open macos/Runner.xcworkspace