1
0
forked from baron/baron-sso

flutter 린트 적용

This commit is contained in:
2026-02-19 16:08:42 +09:00
parent 466e7f1e54
commit 3eb7ed01ee
8 changed files with 35 additions and 73 deletions

View File

@@ -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') {