-
-
Notifications
You must be signed in to change notification settings - Fork 410
Open
Description
I want to cancel the toast everytime I press the key.
But it works only on the 1st time, next toasts are not cancelled:
bad.toast.video_2024-06-19_15-02-19.mp4
code:
@override
void initState() {
super.initState();
nameTextController = TextEditingController()
..addListener(() async {
if (nameTextController.text.length > 40) {
await Fluttertoast.cancel();
Fluttertoast.showToast(msg: 'Max 40 characters').ignore();
}
});
}
jongkb
Metadata
Metadata
Assignees
Labels
No labels