Thứ Ba, 28 tháng 7, 2020

how to change double to int flutter

double d = 20.5;

int i = d.toInt(); // i = 20
int i = d.round(); // i = 21
int i = d.ceil();  // i = 21
int i = d.floor(); // i = 20

How to reload app in flutter

  Phoenix . rebirth (context);