showing CircularProgressIndicator until the function end | flutter
I want to show CircularProgressIndicator until the function end, So I use this method, set bool isLoading = false; and this is the function, verifyPhoneNumber(String input) async { setState(() { isLoading = true; }); await AuthMethods().phoneSign(context, input); setState(() { isLoading…