I'm new in flutter and practicing simple app. But now, I can insert one line conditional statement but I want to add If statement. So I can add more statement. How do I do that? Here is my code. Please have a look. I want to add more color when I reach targeted amount color: _moneyCounter > 1000 ? Colors.green : Colors.red,
Expanded( child: Center( child: Text( '\USD $_moneyCounter', style: TextStyle( color: _moneyCounter > 1000 ? Colors.green : Colors.red, fontSize: 40.0, ), ), ), ),