Flutter SDK
1. Installation
Download the SDK Tamara Flutter SDK
The link above includes documentation on how to use our Flutter SDK, as well as a list of the supported functions.
You may check out our example for Tamara Flutter SDK here on Github - Tamara Flutter SDK Example
2. Setup
Using this package as a library
A. Depend on it
Run this command:
With Flutter:
$ flutter pub add tamara_flutter_sdk
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
Please note that the version should be changed to our latest version.
dependencies:
tamara_sdk: ^1.0.9
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_flutter_sdk/tamara_checkout.dart';
import 'package:tamara_flutter_sdk/tamara_sdk.dart';
Updated 1 day ago