quickchat 1.0.2
quickchat: ^1.0.2 copied to clipboard
chatinbox
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Chat Inbox',style: TextStyle(color: Colors.white),),
backgroundColor: Colors.blueAccent,),
body: Container()),
);
}
}