項目中需要用到類似安卓的Toast提示框,因為flutter中又沒有相關組件,然后在網上看到個不錯的,地址https://www.jianshu.com/p/cf7877c9bdeb,然后拿過來修改了了一下封裝。
先看一下效果圖

廢話不多說~~上代碼
調用說明
首先你需要下載toast.dart文件,然后引用他~
下載地址:https://gitee.com/daydayfull/flutter_toast
import 'package:test_app/toast.dart';
調用方法
最簡單的調用,如果不需要更改樣式啥的直接這樣子就可以用啦~
Toast.toast( context, msg: '大哥~你不是點到了我嗎~', );
效果如下:

如果你要求多一點,那你可以根據下面的參數做修改
Toast.toast( context, msg: '大哥~你不是點到了我嗎~', // String 提示的文本 showTime: 2000, // int 顯示的時間,單位milliseconds,也就是毫秒 bgColor: Color.fromRGBO(130, 0, 0, 1), // Color 提示框背景顏色 textColor: Color.fromRGBO(250, 100, 100, 1), // Color 提示框文字顏色 textSize: 18.0, // double 提示框文字大小 position: 'bottom', // String 提示框顯示位置,默認是center,可設置top和bottom pdHorizontal: 50.0, // double 左右邊距 pdVertical: 30.0, // double 上下邊距 );
效果如下:

下面附上toast.dart的源碼
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class Toast {
static OverlayEntry _overlayEntry; // toast靠它加到屏幕上
static bool _showing = false; // toast是否正在showing
static DateTime _startedTime; // 開啟一個新toast的當前時間,用於對比是否已經展示了足夠時間
static String _msg; // 提示內容
static int _showTime; // toast顯示時間
static Color _bgColor; // 背景顏色
static Color _textColor; // 文本顏色
static double _textSize; // 文字大小
static String _toastPosition; // 顯示位置
static double _pdHorizontal; // 左右邊距
static double _pdVertical; // 上下邊距
static void toast(
BuildContext context,
{
String msg,
int showTime = 2000,
Color bgColor = Colors.black,
Color textColor = Colors.white,
double textSize = 14.0,
String position = 'center',
double pdHorizontal = 20.0,
double pdVertical = 10.0,
}
) async {
assert(msg != null);
_msg = msg;
_startedTime = DateTime.now();
_showTime = showTime;
_bgColor = bgColor;
_textColor = textColor;
_textSize = textSize;
_toastPosition = position;
_pdHorizontal = pdHorizontal;
_pdVertical = pdVertical;
//獲取OverlayState
OverlayState overlayState = Overlay.of(context);
_showing = true;
if (_overlayEntry == null) {
_overlayEntry = OverlayEntry(
builder: (BuildContext context) => Positioned(
//top值,可以改變這個值來改變toast在屏幕中的位置
top: _calToastPosition(context),
child: Container(
alignment: Alignment.center,
width: MediaQuery.of(context).size.width,
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 40.0),
child: AnimatedOpacity(
opacity: _showing ? 1.0 : 0.0, //目標透明度
duration: _showing
? Duration(milliseconds: 100)
: Duration(milliseconds: 400),
child: _buildToastWidget(),
),
)),
));
overlayState.insert(_overlayEntry);
} else {
//重新繪制UI,類似setState
_overlayEntry.markNeedsBuild();
}
await Future.delayed(Duration(milliseconds: _showTime)); // 等待時間
//2秒后 到底消失不消失
if (DateTime.now().difference(_startedTime).inMilliseconds >= _showTime) {
_showing = false;
_overlayEntry.markNeedsBuild();
await Future.delayed(Duration(milliseconds: 400));
_overlayEntry.remove();
_overlayEntry = null;
}
}
//toast繪制
static _buildToastWidget() {
return Center(
child: Card(
color: _bgColor,
child: Padding(
padding: EdgeInsets.symmetric(horizontal: _pdHorizontal, vertical: _pdVertical),
child: Text(
_msg,
style: TextStyle(
fontSize: _textSize,
color: _textColor,
),
),
),
),
);
}
// 設置toast位置
static _calToastPosition(context) {
var backResult;
if(_toastPosition == 'top'){
backResult = MediaQuery.of(context).size.height * 1 / 4;
}else if(_toastPosition == 'center'){
backResult = MediaQuery.of(context).size.height * 2 / 5;
}else{
backResult = MediaQuery.of(context).size.height * 3 / 4;
}
return backResult;
}
}
如果你覺位置不合適可到源碼_calToastPosition()修改。
