When working on a Flutter app, you might encounter the need to split a large UI component into several smaller ones to improve the readability of the code. In Flutter, you can manage the state of your app just by using setState . …19 May 2021
Read moreWhy do we use setState in flutter?
setState is a way to dynamically change the UI . We call it inside the State Object class of the StatefulWidget. Calling setState marks the corresponding Widget dirty .
Read more