zendesk_flutter 0.0.7 zendesk_flutter: ^0.0.7 copied to clipboard
flutter lib for zendesk api
import 'package:flutter/material.dart';
import 'package:zendesk_flutter/zendesk_flutter.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: const Center(child: OpenModal()),
),
);
}
}
class OpenModal extends StatelessWidget {
const OpenModal({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return TextButton(
onPressed: () => ZendeskFlutter().helpDesk(context),
child: const Text('Open Modal'));
}
}