How to use conditional statement within child attribute of a Flutter Widget (Center Widget)
Actually you can use if/else and switch and any other statement inline in dart / flutter. Use an immediate anonymous function class StatmentExample extends StatelessWidget { Widget build(BuildContext context) { return Text((() { if(true){ return “tis true”;} return “anything but true”; })()); } } ie wrap your statements in a function (() { // your … Read more