Skip to content

yanpengfei-git/FlutterToast

 
 

Repository files navigation

Android and iOS Toast Library for Flutter

Supported Platforms

  • Android
  • IOS

If you dont want to use androidx then use fluttertoast version 2.2.11

How to Use

# add this line to your dependencies
fluttertoast: ^3.1.0
import 'package:fluttertoast/fluttertoast.dart';
Fluttertoast.showToast(
        msg: "This is Center Short Toast",
        toastLength: Toast.LENGTH_SHORT,
        gravity: ToastGravity.CENTER,
        timeInSecForIos: 1,
        backgroundColor: Colors.red,
        textColor: Colors.white,
        fontSize: 16.0
    );
property description
msg String (Not Null)(required)
toastLength Toast.LENGTH_SHORT or Toast.LENGTH_LONG (optional)
gravity ToastGravity.TOP (or) ToastGravity.CENTER (or) ToastGravity.BOTTOM
timeInSecForIos int (only for ios)
bgcolor Colors.red
textcolor Colors.white
fontSize 16.0 (float)

To cancel all the toasts call

Fluttertoast.cancel()

Preview Images

If you need any features suggest

About

Android Toast Plugin for Flutter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 72.7%
  • Dart 14.0%
  • Java 8.4%
  • Ruby 4.9%