flutter_wechat_toast 1.0.2 copy "flutter_wechat_toast: ^1.0.2" to clipboard
flutter_wechat_toast: ^1.0.2 copied to clipboard

discontinued

A wechat styled toast plugin, This package required 3 methods to build a toast widget.

flutter_wechat_toast #

A wechat styled toast plugin. This package is quite simple, only 3 methods requied. Make sure you need it or this will be your best choise before your installation.

install #

Add following item into your pubspec.yaml

flutter_wechat_toast: ^1.0.1

Recommened you install it from git repo. because this package may contains bugs or changes.

Examples and Noticing #

This package required 3 methods to build a toast widget.
You can using await to wait toast widget dismissed.

text() async{
    await WechatToast(context: context).failed(message: '操作失败');
    print('done');
}

Parameters #

Create a toast widget, you can specify these arguments.

/// build context
  final BuildContext context;

  /// mask will forbid users operation before toast finished
  final bool mask;

  /// display duration
  final Duration duration;

  /// borderRadius you are prefered
  final BorderRadiusGeometry borderRadius;

  /// elevation
  final double elevation;

Demo: #

import 'package:flutter_wechat_toast/flutter_wechat_toast.dart';

/// ...
MaterialButton(
    child: Text('Toast failed'),
    onPressed: () => WechatToast(context: context).failed(message: '操作失败'),
),
MaterialButton(
    child: Text('Toast success'),
    onPressed: () =>
        WechatToast(context: context).success(message: '操作成功'),
),
    MaterialButton(
    child: Text('Toast loading'),
    onPressed: () async{
    final Function close =  WechatToast(context: context).loading(message: '加载中');

    await Future.delayed(const Duration(seconds: 5));
    close();
    },
),
MaterialButton(
    child: Text('Toast success and remove Mask'),
    onPressed: () =>
        WechatToast(context: context, mask: false).success(message: '无遮罩'),
),
0
likes
30
pub points
0%
popularity

Publisher

verified publisherclodra.com

A wechat styled toast plugin, This package required 3 methods to build a toast widget.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_wechat_toast