chat_bubbles 0.7.1+2 copy "chat_bubbles: ^0.7.1+2" to clipboard
chat_bubbles: ^0.7.1+2 copied to clipboard

outdated

This is a simple Flutter widget plugin. This plugin is compatible with both iOS and Android platforms.

chat_bubbles plugin #

Flutter widgets for messaging apps as chat bubbles.

Getting Started #

Add this to your package's pubspec.yaml file:

dependencies:
  chat_bubbles: ^0.7.0

Usage #

Then you just have to import the package with

import 'package:chat_bubbles/chat_bubbles.dart'

Now you can use this plugin to implement various types of Chat Bubbles.

Example #

BubbleNormal(
    text: 'bubble normal with tail',
    isSender: false,
    color: Color(0xAF52FF8C),
    tail: true,
),
BubbleNormal(
    text: 'bubble normal with tail',
    isSender: true,
    color: Color(0xAF6AD0F5),
    tail: true,
),
BubbleNormal(
    text: 'bubble normal without tail',
    isSender: false,
    color: Color(0xAF52FF8C),
    tail: false,
),
BubbleNormal(
    text: 'bubble normal without tail',
    color: Color(0xAF6AD0F5),
    tail: false,
),
BubbleSpecialOne(
    text: 'bubble special one with tail',
    isSender: false,
    color: Color(0xAF52FF8C),
),
BubbleSpecialOne(
    text: 'bubble special one without tail',
    color: Color(0xAF6AD0F5),
),
BubbleSpecialOne(
    text: 'bubble special one with tail',
    isSender: false,
    tail: false,
    color: Color(0xAF52FF8C),
),
BubbleSpecialOne(
    text: 'bubble special one without tail',
    tail: false,
    color: Color(0xAF6AD0F5),
),
BubbleSpecialTwo(
    text: 'bubble special tow with tail',
    isSender: false,
    color: Color(0xAF52FF8C),
),
BubbleSpecialTwo(
    text: 'bubble special tow with tail',
    isSender: true,
    color: Color(0xAF6AD0F5),
),
BubbleSpecialTwo(
    text: 'bubble special tow without tail',
    isSender: false,
    tail: false,
    color: Color(0xAF52FF8C),
),
BubbleSpecialTwo(
    text: 'bubble special tow without tail',
    tail: false,
    color: Color(0xAF6AD0F5),
)

Issues #

Please feel free to let me know any issue regarding to this plugin.

417
likes
0
pub points
98%
popularity

Publisher

verified publisherprabhanu.com

This is a simple Flutter widget plugin. This plugin is compatible with both iOS and Android platforms.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on chat_bubbles