Skip to content

Latest commit

 

History

9 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages