flutter tween delay code example
Example 1: flutter delay
Future.delayed(Duration(milliseconds: 100), () {
// Do something
});
Example 2: flutter delay
Timer(Duration(seconds: 5), () {
print(" This line is execute after 5 seconds");
});
Future.delayed(Duration(milliseconds: 100), () {
// Do something
});
Timer(Duration(seconds: 5), () {
print(" This line is execute after 5 seconds");
});