Reputation: 6766
I need to return an int from the build() method in a StatelessWidget class. build() method obviously returns a Widget. How can I convert my int to a Widget?
int
build()
StatelessWidget
Widget
Upvotes: 0
Views: 256
Reputation: 276911
A Text will do
Text(42.toString())
Upvotes: 1