chatty_widget

Creator: coderz1093

Last updated:

0 purchases

chatty_widget Image
chatty_widget Images

Languages

Categories

Add to Cart

Description:

chatty widget

chatty_widget #
A Flutter widget that shows message on tap event.
Installation #
In your pubspec.yaml root add:
dependencies:
chatty_widget: LATEST_VERSION_NUMBER
copied to clipboard
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');
},
)
copied to clipboard
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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.