Flutter延迟后如何显示小吃吧?我试过了
Future.delayed(const Duration(milliseconds: 5000), () { ... }
但它根本不会延迟它。
那么你必须在你的未来执行结束后这样做。你用then
future方法做到这一点。
Future.delayed(Duration(seconds: 5)).then((_) {
// this code is executed after the future ends.
_scaffoldKey.currentState.showSnackBar( SnackBar(content: Text("SNACKBAR") ) );
} );