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

[7주차] 과제 제출_강혜린 #93

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
25 changes: 0 additions & 25 deletions Week 7/Assignment/강혜린/7주차 과제.md

This file was deleted.

50 changes: 50 additions & 0 deletions Week 7/Assignment/강혜린/7주차_강혜린.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# 7주차 과제

## 1번 제출!

"Flutter + Firebase로 넷플릭스 UI 클론 코딩하기"을 완료한 후,
시뮬레이터나 자신의 핸드폰에서 실행한 앱을 캡처해서 올려주세요!
- 홈화면
![image](https://github.com/GDSC-Hanyang/2023-App-Study/assets/141254653/88a664b3-7bf4-4b26-995b-21ebf9008392)

- 상세 보기 화면
![image](https://github.com/GDSC-Hanyang/2023-App-Study/assets/141254653/9731fbb1-a817-4658-b4be-f1bf1c8a65d0)


- 프로필 화면
![image](https://github.com/GDSC-Hanyang/2023-App-Study/assets/141254653/7217aa54-25d0-4b33-87a0-48478bd3ee74)


- 검색 화면
![image](https://github.com/GDSC-Hanyang/2023-App-Study/assets/141254653/cdb8b354-3053-49a6-aca5-926c3b9f08a2)


- 찜한 콘텐츠 화면
![image](https://github.com/GDSC-Hanyang/2023-App-Study/assets/141254653/db196d9c-d0ae-42b3-aaa9-810740881548)

총 5개의 화면을 올려주시면 됩니다!

//에러가 많아 영상 보며 따라한 사진들이나마 올려봅니다 ㅠㅅㅠ...firebase 연동도 잘 되지 않아서 계속 시도 중이에요! 죄송합니다;)

## 2번 학습!

이전 니코 쌤과의 클론코딩에서 http get() 사용법에 대하여 알아봤습니다.<br>
서버에서 데이터를 받아오는 법을 알았다면, 서버로 데이터를 보내는 법을 알아야겠죠?

서버에서 데이터를 받아오는 http post()의 사용법에 대하여 알아봅시다.<br>
http의 post() 를 사용하는 법에 대하여 찾아서 간단하게만 정리해보세요.

- 답변

import 'package:http/http.dart' as http;

Future<void> sendData(String data) async {
http.Response res = await http.post('https://ptsv2.com/t/8eqmo-1599568603/post',
body: { //여기에 전송할 데이터를 json 형식으로 포함해서 전송한다.
'data': data
});


자세한 방법은 하단의 링크를 참조해주세요

[과제 제출 방법 확인하기](https://github.com/GDSC-Hanyang/2023-App-Study/issues/4)