Q:

flutter delay a function

Future.delayed(const Duration(milliseconds: 500), () {

// Here you can write your code

  setState(() {
    // Here you can write your code for open new view
  });

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

New to Communities?

Join the community