flutter_chat_bubble 0.0.1 copy "flutter_chat_bubble: ^0.0.1" to clipboard
flutter_chat_bubble: ^0.0.1 copied to clipboard

outdated

Flutter Widget for creating different types of chat Bubble

example/lib/main.dart

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(),
      ),
    );
  }
}
294
likes
30
pub points
98%
popularity

Publisher

unverified uploader

Flutter Widget for creating different types of chat Bubble

Repository (GitHub)
View/report issues

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_chat_bubble