flutter_chatflow 0.1.0 copy "flutter_chatflow: ^0.1.0" to clipboard
flutter_chatflow: ^0.1.0 copied to clipboard

A versatile chat solution for Flutter apps, offering fast messaging, customizable UI, user management, media sharing, and group chats. Ideal for building robust communication apps

example/lib/main.dart

import '/screens/home.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MainApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorSchemeSeed: const Color.fromARGB(255, 62, 211, 42),
      ),
      color: Colors.white,
      home: const Home(),
    );
  }
}
20
likes
150
points
68
downloads

Publisher

unverified uploader

Weekly Downloads

A versatile chat solution for Flutter apps, offering fast messaging, customizable UI, user management, media sharing, and group chats. Ideal for building robust communication apps

Repository (GitHub)
View/report issues

Topics

#chat #message #messaging #chat-ui #chat-room

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_chatflow