how do I create a new Flutter project that uses theta-client
how do I create a new Flutter project that uses theta-client
I’ll help you create a new Flutter project with theta-client. Let me search for the most up-to-date information and provide detailed instructions.
Found 35 results for 'flutter theta client setup status:public'
Based on the latest information, I’ll help you create a new Flutter project that uses theta-client. Here are the steps:
flutter create --platforms=android,ios -i swift -a kotlin your_app_name
mkdir -p packages/theta_client_flutter
Then copy the contents of theta-client/flutter into your packages/theta_client_flutter
directory.
pubspec.yaml
to include the local theta_client_flutter package:dependencies:
flutter:
sdk: flutter
theta_client_flutter:
path: ./packages/theta_client_flutter
android/app/build.gradle
to set minimum SDK version to 26 or higher:android {
defaultConfig {
minSdkVersion 26
}
}
ios/Podfile
:platform :ios, '15.0'
Remember to run:
flutter pub get
cd ios && pod install && cd ..
Key Links:
Before using the SDK, make sure to:
For detailed information on using theta-client with Flutter including code examples, you can check out this tutorial: theta-client tips
The most recent version as of February 2025 is 1.12. Make sure to check the GitHub repository for the latest updates and changes.
Would you like me to provide examples of basic camera operations like taking photos or showing the live preview once you have the project set up?