A Flutter widget that shows message on tap event.
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');
},
)
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.