Skip to content

hyobbb/chatty_widget

Repository files navigation

chatty_widget

A Flutter widget that shows message on tap event.

Installation

In your pubspec.yaml root add:

dependencies:
  chatty_widget: LATEST_VERSION_NUMBER

on use,

import 'package:chatty_widget/chatty_widget.dart';

ChattyWidget(
  child: Icon(Icons.add),
  text: 'This is Add Icon',
  textStyle: TextStyle(color: Colors.white),
  textBoxColor: Colors.black,
  chatBoxLocation: BoxLocation.Top,
  chatBoxWidth: 100,
  onTap: () {
    print('do something');
  },
)

Demo

Limit

Do Not use widgets like Buttons that has their own onTap callback function. It will be ignored. Instead, just use onTap method to execute additional method while showing the chat box.

About

Flutter widget that shows message on tap

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published