Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

toast flutter

# add this line to your dependencies
fluttertoast: ^7.1.1

Fluttertoast.showToast(
        msg: "This is Center Short Toast",
        toastLength: Toast.LENGTH_SHORT,
        gravity: ToastGravity.CENTER,
        timeInSecForIosWeb: 1,
        backgroundColor: Colors.red,
        textColor: Colors.white,
        fontSize: 16.0
    );
Source by pub.dev #
 
PREVIOUS NEXT
Tagged: #toast #flutter
ADD COMMENT
Topic
Name
5+8 =