flutter_chat_bubble 0.0.1 flutter_chat_bubble: ^0.0.1 copied to clipboard
Flutter Widget for creating different types of chat Bubble
import 'package:flutter/material.dart';
import 'chat_list.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
title: const Text('Chat Bubble'),
),
body: ChatList(),
),
);
}
}