Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // Function to return either a spinner or some text depending on whether a result is available
  2. Widget loadingSpinner() {
  3. if (loading == true) {
  4. return SpinKitDoubleBounce(
  5. color: Colors.red,
  6. size: 50,
  7. );
  8. } else {
  9. return Text(
  10. '$userPercentage%',
  11. style: kPrimaryTextStyle.copyWith(
  12. decoration: TextDecoration.underline, fontSize: 44),
  13. );
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement