generated from jwson-automation/blueberry_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
438 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// 이메일 인증 ( 아이디 ) | ||
import 'package:flutter_riverpod/flutter_riverpod.dart'; | ||
|
||
final emailProvider = StateProvider<String>((ref) => ''); | ||
final emailVerificationCodeProvider = StateProvider<String>((ref) => ''); | ||
|
||
// 이름, 닉네임 생성 | ||
final nameProvider = StateProvider<String>((ref) => ''); | ||
final nicknameProvider = StateProvider<String>((ref) => ''); | ||
|
||
// 비밀번호 생성 | ||
final passwordProvider = StateProvider<String>((ref) => ''); | ||
final passwordConfirmProvider = StateProvider<String>((ref) => ''); | ||
|
||
// 휴대폰 번호 인증 ( 구매할 때 휴대폰 인증 ) ( 따로 만들기 ) | ||
final residentRegistrationNumberProvider = StateProvider<String>((ref) => ''); | ||
final phoneNumberProvider = StateProvider<String>((ref) => ''); | ||
final verificationNumberProvider = StateProvider<String>((ref) => ''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.