zohodesk_portal_gc 1.1.5 copy "zohodesk_portal_gc: ^1.1.5" to clipboard
zohodesk_portal_gc: ^1.1.5 copied to clipboard

Flutter plugin for ZohoDesk Guided conversation written around native GC SDKs

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
1
likes
0
points
114
downloads

Publisher

verified publisherzoho.com

Weekly Downloads

Flutter plugin for ZohoDesk Guided conversation written around native GC SDKs

License

unknown (license)

Dependencies

flutter, plugin_platform_interface, zohodesk_portal_apikit

More

Packages that depend on zohodesk_portal_gc