forked from baron/baron-sso
flutter 린트 적용
This commit is contained in:
@@ -1286,10 +1286,12 @@ class _SignupScreenState extends State<SignupScreen> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
bool canGoNext = false;
|
||||
if (_currentStep == 1 && _termsAccepted && _privacyAccepted)
|
||||
if (_currentStep == 1 && _termsAccepted && _privacyAccepted) {
|
||||
canGoNext = true;
|
||||
if (_currentStep == 2 && _isEmailVerified && _isPhoneVerified)
|
||||
}
|
||||
if (_currentStep == 2 && _isEmailVerified && _isPhoneVerified) {
|
||||
canGoNext = true;
|
||||
}
|
||||
if (_currentStep == 3) {
|
||||
final nameOk = _nameController.text.trim().isNotEmpty;
|
||||
if (_affiliationType == 'GENERAL') {
|
||||
|
||||
Reference in New Issue
Block a user