-
Notifications
You must be signed in to change notification settings - Fork 3
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
construct header section in detail view #57
Conversation
Codecov Report
@@ Coverage Diff @@
## main #57 +/- ##
===========================================
- Coverage 88.70% 77.41% -11.30%
===========================================
Files 3 3
Lines 62 31 -31
===========================================
- Hits 55 24 -31
Misses 6 6
Partials 1 1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아주 좋습니다 👏👏👏👏👏
몇가지 사항 및 린트에러만 수정되면 문제 없겠습네다.
@@ -0,0 +1,10 @@ | |||
import 'package:flutter/material.dart'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
실수로 들어간 파일 같네요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
현재 디테일뷰 섹션 분리를
- 헤더 (시청 수, 좋아요 수, 발표자 등)
- 논문 abstract 열람
- 코드 저장소 목록
- 추천 논문 목록
으로 채울 생각입니다. abstract.dart
는 이 중 두 번째 위젯에 해당합니당
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
abstract 이 키워드라서 PaperAbstract 라고 명시해주시면 좋을 것 같아요.
나중에 보시면 수정
String presenter = "박찬성"; | ||
int numberOfViews = 0; | ||
int numberOfLikes = 0; | ||
bool didILikedIt = false; | ||
String date = "2017.4.22"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
하드코딩보다 이미 가지고 있는 도메인 (Video 객체)로 설계해주세요.
아니면 VideoWrapper 데이터 객체를 생성하거나요.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거는 일부 데이터를 Video 객체를 참조하여 대체하였습니다.
다만 numberOfViews
, didILikedIt
, date
에 대한 정보는 형재 Video에 정의되어 있지 않아서 플레이스 홀더로 남겨두었습니다.
혹시 관련 정보도 같이 프로토버퍼 메시지에 추가한 뒤 다시 PR 드릴까요?
- 근데 didILikedIt 은 사용자 관련 정보여서, 요놈은 아직 정의하기 애매할것도 같네요.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
프로토 메시지도 일부 수정하여 업로드 하였습니다.
코드 커버리지는 왜 fail 인지 잘 모르겠네요 ㅜ
Co-authored-by: Mo Kweon <[email protected]>
Co-authored-by: Mo Kweon <[email protected]>
Co-authored-by: Mo Kweon <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다.
@@ -0,0 +1,10 @@ | |||
import 'package:flutter/material.dart'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
abstract 이 키워드라서 PaperAbstract 라고 명시해주시면 좋을 것 같아요.
나중에 보시면 수정
커버리지는 리베이스 최신화 안하셔서 그렇습니다. |
수고하셨습니다. |
🎉 This PR is included in version 1.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
No description provided.