uni_support 1.0.2 copy "uni_support: ^1.0.2" to clipboard
uni_support: ^1.0.2 copied to clipboard

A comprehensive library for seamless Customer Support. Effortlessly handle Open issue ticket, start chat with admin, and streamline your issue processing with our robust and versatile solution.

example/lib/main.dart

import 'package:example/uni_support_page.dart';
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'firebase_options.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp(
    options: DefaultFirebaseOptions.currentPlatform,
  );
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'UNI-SUPPORT',
      home: MyHomePage(title: 'UNI-SUPPORT-HOME'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Colors.teal,
        title: Text(widget.title, style: const TextStyle(color: Colors.white)),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'CLICK HERE TO GET STARTED',
              style: TextStyle(fontSize: 20),
            ),
            const SizedBox(height: 20),
            FloatingActionButton(
              onPressed: () {
                Navigator.push(
                  context,
                  MaterialPageRoute(builder: (context) => const UniSupportPage()),
                );
              },
              tooltip: 'UNI-SUPPORT',
              backgroundColor: Colors.teal,
              child: const Icon(Icons.add),
            ),
          ],
        ),
      ),
    );
  }
}
copied to clipboard
1
likes
120
points
82
downloads

Publisher

verified publisherunicodesolutions.co

Weekly Downloads

2024.09.26 - 2025.04.10

A comprehensive library for seamless Customer Support. Effortlessly handle Open issue ticket, start chat with admin, and streamline your issue processing with our robust and versatile solution.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, cached_video_player, cloud_firestore, collection, equatable, file_picker, firebase_core, flutter, flutter_bloc, flutter_localizations, flutter_rating_stars, flutter_svg, flutter_xlider, get_it, gif, image_picker, intl, mime, modal_bottom_sheet, path, path_provider, permission_handler, shimmer, uni_storage, uuid

More

Packages that depend on uni_support