apptex_chat 2.0.0 copy "apptex_chat: ^2.0.0" to clipboard
apptex_chat: ^2.0.0 copied to clipboard

This Package is for making the chat system more easy and user friendly. and control chat features within one click.

example/lib/main.dart

// ignore_for_file: public_member_api_docs, sort_constructors_first
// ignore_for_file: must_be_immutable

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

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Apptex Chat Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Login(),
    );
  }
}
15
likes
80
pub points
55%
popularity

Publisher

unverified uploader

This Package is for making the chat system more easy and user friendly. and control chat features within one click.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

audio_waveforms, cached_network_image, cloud_firestore, emoji_picker_flutter, firebase_storage, flutter, image_picker, intl, ntp, provider

More

Packages that depend on apptex_chat