flutter_chatflow 0.0.2
flutter_chatflow: ^0.0.2 copied to clipboard
A powerful and flexible chat solution for Flutter 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(),
);
}
}