flutter show more text in popup
a flutter plugin to show textinpopup.
installation
add this to your package’s pubspec.yaml file
dependencies:
...
show_more_text_popup: ^latest-version
usage
first import show_more_text_popup.dart
import 'package:show_more_text_popup/show_more_text_popup.dart';
showmoretextpopup popup = showmoretextpopup(context,
text: text,
textstyle: textstyle(color: colors.black),
height: 200,
width: 100,
backgroundcolor: color(0xff16cccc));
popup.show(
widgetkey: key,
);
Comments are closed.