[Flutter] 31. 모두의 블로그 앱 만들기 (9) - 게시글 수정 페이지

김주희's avatar
Jun 10, 2025
[Flutter] 31. 모두의 블로그 앱 만들기 (9) - 게시글 수정 페이지

게시글 수정 화면에 원래 title,content 가져오기

1.

notion image
 

2.

notion image
 

3.

notion image
 

4.

상세보기 화면으로부터 온 post
notion image
 

5.

notion image
 

6.

notion image
 

7.

notion image
 

실행 결과

 

게시글 수정

1.

notion image
 
게시글 수정시 id,title,content 다 날려야 됨
 
상세보기 화면에서 수정으로 들어왓음 → 수정 버튼 누르면 상세보기로 가야 됨 → detail의 상태를 변경해야됨 → 결국 뒤로 가면 list의 상태도 변경되어야함 → 근데 detail이 가까우니까 detail에서 하고 list로 넘겨주면 됨
 

2. post_repository

 

3. post_detail_vm

 

4. post_update_form

 

5. post_list_vm

notion image
Share article

jay0628