Answers for "flutter round off double"

3

double variable into 2 decimal places flutter

double num1 = double.parse((12.3412).toStringAsFixed(2));
// 12.34

double num2 = double.parse((12.5668).toStringAsFixed(2));
// 12.57

double num3 = double.parse((-12.3412).toStringAsFixed(2));
// -12.34

double num4 = double.parse((-12.3456).toStringAsFixed(2));
// -12.35
Posted by: Guest on November-29-2020
0

round off in dart

//dart code
double x = 5.56753;
String roundedX = x.toStringAsFixed(2);
print(roundedX);
Posted by: Guest on May-05-2021
0

flutter round up double

int doubleRoundUp = doubleToRoundUp.ceil();
Posted by: Guest on January-14-2021

Browse Popular Code Answers by Language