vivanta_connect_flutter 0.3.0+4 vivanta_connect_flutter: ^0.3.0+4 copied to clipboard
Vivanta Connect for Flutter
Vivanta Connect for Flutter #
Plugin to integrate Vivanta Connect in Flutter Projects
How to use #
- Add the import of Vivanta Connect
import 'package:vivanta_connect_flutter/views/start_vivanta_connect.dart';
- Create a route to open Vivanta Connect. For example:
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => StartVivantaConnect(
apiKey: apiKey, // Required
customerId: customerId, // Required
externalUserId: externalUserId, // Required
companyId: companyId, // Optional
),
),
);
- Vivanta Connect will start and automatically set the language based on the configuration of the device.
Note: Vivanta Connect requires a valid API Key and the associated Customer ID to fully function.