Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/247 feat 회원 정보 수정 #248

Merged
merged 26 commits into from
Aug 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
58a9524
Feat: 회원 정보 수정 appBar에서 수정 버튼 클릭 시 이동 구현
suhyun113 Aug 3, 2024
9b7aadd
Feat: 회원 정보 수정 페이지 생성 및 appBar 구현
suhyun113 Aug 3, 2024
c9fe1cf
Feat: 회원 정보 수정 페이지 텍스트 필드 위젯 생성
suhyun113 Aug 3, 2024
3c66697
Feat: 회원 정보 페이지 appBar 이동 페이지 import 적용
suhyun113 Aug 3, 2024
7a9d87d
Feat: 회원 정보 수정 페이지 정보 전달 위한 변수 설정 및 값 전달
suhyun113 Aug 3, 2024
176052c
Feat: 위젯 종류 변경 및 비밀번호 텍스트 가리기 위한 obscureText 변수 추가 및 적용
suhyun113 Aug 3, 2024
a9b2ead
Feat: 회원 정보 페이지 값 변수로 변경
suhyun113 Aug 3, 2024
1fb7a8f
Feat: 회원 정보 수정 페이지에 회원 정보 값 전달 받기 및 컨트롤러 정의 및 각 컨테이너 적용
suhyun113 Aug 3, 2024
893a9a0
Feat: 회원 정보 수정 페이지 각 요소인 컨테이너 구현(텍스트 필드 이름, 텍스트 필드 정보, 텍스트 필드 회색 설명 문…
suhyun113 Aug 3, 2024
e56d504
Chore: 위젯 스펠링 수정
suhyun113 Aug 3, 2024
818c1a3
Chore: 위젯 스펠링 수정으로 인한 다른 파일 내의 이름 변경
suhyun113 Aug 3, 2024
d88f844
Refactor: 회원 정보 수정 페이지 텍스트 필드 경고 회색 텍스트 스타일 파일 분리 및 정의
suhyun113 Aug 3, 2024
5082e92
Refactor: 회원 정보 수정 페이지 텍스트 필드 스타일 정의 및 구현
suhyun113 Aug 3, 2024
6a6f769
Refactor: 텍스트 필드 파일 이름 변경
suhyun113 Aug 3, 2024
209122b
Refactor: import 주소 공백 제거 및 사용되지 않는 주소 제거
suhyun113 Aug 3, 2024
fe9fb65
Feat: add image userImage1~14 and add userImage gallery, camera
suhyun113 Aug 16, 2024
ce9e34a
Feat: add userInfo image camera
suhyun113 Aug 16, 2024
ef95e8b
Feat: 회원 정보 수정 텍스트 필드 읽기 전용만 되는 텍스트 필드에 조건 추가
suhyun113 Aug 16, 2024
334a0df
Feat: 회원 정보 수정 조건에 따른 색상 변경 버튼
suhyun113 Aug 16, 2024
b413847
Feat: 회원 정보 수정 읽기 전용 추가
suhyun113 Aug 16, 2024
2a51e60
Refactor: 회원 정보 수정 페이지 코드 정렬
suhyun113 Aug 16, 2024
4037c29
Feat: 회원 가입 수정 완료 수정 완료 버튼 추가 구현 및 수정한 텍스트 필드 회원 정보 페이지에 반영하기
suhyun113 Aug 16, 2024
fea62f1
Feat: 텍스트 필드 중앙 정렬 및 수정 완료 버튼 마진 조정
suhyun113 Aug 16, 2024
334467a
Feat: 회원 정보 수정 비밀번호 변경 페이지 기본 생성
suhyun113 Aug 16, 2024
42a9d1a
Feat: 회원 정보 수정 페이지 비밀번호 텍스트 필드 클릭하면 비밀번호 변경 페이지로 이동 구현
suhyun113 Aug 16, 2024
2805050
Feat: 회원 정보 수정 페이지 비밀번호 변경 유효성 검사 및 버튼 조건 설정 및 색상 변화 구현
suhyun113 Aug 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Feat: 회원 정보 수정 텍스트 필드 읽기 전용만 되는 텍스트 필드에 조건 추가
suhyun113 committed Aug 16, 2024

Verified

This commit was signed with the committer’s verified signature.
merlinran Merlin Ran
commit ef95e8beb3c96e583127b2f295bf83958c7e50f1
Original file line number Diff line number Diff line change
@@ -6,13 +6,15 @@ class RevisionTextField extends StatelessWidget {
final String text;
final TextInputType keyboardType;
final bool obscureText;
final bool readOnly;

const RevisionTextField({
Key? key,
required this.controller,
required this.text,
required this.keyboardType,
this.obscureText = false,
this.readOnly = false,
}) : super(key: key);

@override
@@ -31,6 +33,7 @@ class RevisionTextField extends StatelessWidget {
child: TextField(
controller: controller,
obscureText: obscureText, // 텍스트 가리기
readOnly: readOnly, // 읽기 전용
style: TextStyle(
color: Color(0xFF404040),
fontSize: 13.sp,