Common UI Utility plugins used by Flutter devs on a daily basis
- Toast
- AlertDialogue
- Loader
To show a toast message, use the following code:
UIUtils.showToast("Hello dear");To show a loader, use the following code:
UIUtils.showCircularLoader("Loading...");To show an alert dialogue, use the following code:
UIUtils.showAlertDialogue(context, "Title here", "Here is the description");To show simple spinner loader with no message, use the following code:
UIUtils.showSimpleLoader();Name: Ilo Calistus Email: icalistus@gmail.com