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

outdated

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/login.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';

import 'package:apptex_chat/apptex_chat.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  Firebase.initializeApp();
  AppTexChat.init();
  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(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Login(),
    );
  }
}

class UserModel {
  String name;
  String uuid;
  String url;
  UserModel({
    required this.name,
    required this.uuid,
    required this.url,
  });
}
15
likes
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

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

License

unknown (license)

Dependencies

audio_waveforms, cached_network_image, cloud_firestore, firebase_core, firebase_storage, flutter, get, image_picker, permission_handler

More

Packages that depend on apptex_chat