I'm trying to convert string to decimal in flutter with two decimal places
_accountStatementStore.totalIn = "100";
Text(
"${double.parse(_accountStatementStore.totalIn!)}",
style: TextStyle(
fontSize: 16.0,
fontWeight: FontWeight.normal,
color: Colors.green[700]),
),
the result is 100.0
How can I achieve 100.00 ?