import 'package:flutter/material.dart'; /// Class containing all the FormKey identifiers used across the app /// This helps prevent duplication of form key strings and makes it easier to manage them class TGlobalFormKey { // Registration form step keys static const String personalInfoForm = 'personal_info_new_form_key'; static const String idCardVerificationForm = 'id_card_verification_form_key'; static const String selfieVerificationForm = 'selfie_verification_form_key'; static const String identityVerificationForm = 'identity_verification_form_key'; static const String officerInfoForm = 'officer_info_form_key'; static const String unitInfoForm = 'unit_info_form_key'; // Authentication form keys static const String signInForm = 'sign_in_form_key'; static const String signUpForm = 'sign_up_form_key'; static const String forgotPasswordForm = 'forgot_password_form_key'; static const String resetPasswordForm = 'reset_password_form_key'; static const String otpVerificationForm = 'otp_verification_form_key'; // Profile form keys static const String editProfileForm = 'edit_profile_form_key'; static const String changePasswordForm = 'change_password_form_key'; static const String notificationSettingsForm = 'notification_settings_form_key'; // Create global keys for forms with specific debug labels static GlobalKey createFormKey(String keyName) { return GlobalKey(debugLabel: keyName); } // Helper function to get a personal info form key static GlobalKey personalInfo() { return createFormKey(personalInfoForm); } // Helper function to get an ID card verification form key static GlobalKey idCardVerification() { return createFormKey(idCardVerificationForm); } // Helper function to get a selfie verification form key static GlobalKey selfieVerification() { return createFormKey(selfieVerificationForm); } // Helper function to get an identity verification form key static GlobalKey identityVerification() { return createFormKey(identityVerificationForm); } // Helper function to get an officer info form key static GlobalKey officerInfo() { return createFormKey(officerInfoForm); } // Helper function to get a unit info form key static GlobalKey unitInfo() { return createFormKey(unitInfoForm); } }