vivanta_connect_flutter 0.3.0+4 copy "vivanta_connect_flutter: ^0.3.0+4" to clipboard
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 #

  1. Add the import of Vivanta Connect
import 'package:vivanta_connect_flutter/views/start_vivanta_connect.dart';
  1. 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
    ),
  ),
);
  1. 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.