flutter_chatflow 0.0.5
flutter_chatflow: ^0.0.5 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(),
);
}
}