Flutter SDK
1. Installation
Download the SDK
Tamara Flutter SDK
2. Setup
Using this package as a library
A. Depend on it
Run this command:
With Flutter:
$ flutter pub add tamara_sdk
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
tamara_sdk: ^1.0.5
Alternatively, your editor might support flutter pub get
. Check the docs of your editor to learn more.
B. Import it
Now in your Dart code, you can use:
import 'package:tamara_sdk/tamara_sdk.dart';
Updated 3 months ago