helpdesk_package 0.0.3
helpdesk_package: ^0.0.3 copied to clipboard
A new Flutter packagefor helpdesk
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:helpdesk_package/helpdesk_package.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text("User App")),
body: const HelpdeskChat(
appId: "demoApp",
userId: "user123",
isAdmin: false,
),
),
);
}
}