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

feat: feed-page 디자인 적용 #78

Merged
merged 10 commits into from
Nov 14, 2024
Merged

feat: feed-page 디자인 적용 #78

merged 10 commits into from
Nov 14, 2024

Conversation

l-lyun
Copy link
Contributor

@l-lyun l-lyun commented Nov 12, 2024

#️⃣연관된 이슈

resolves: #56

📝작업 내용

  • feed-page 디자인 적용
  • gradation 적용 위해 react-native-linear-gradient 설치
  • theme.ts 내 fonts 사용시 글자가 잘려서 lineHeight 폰트 크기별로 4-8px 증가

MarketType.ts

type MarketType = {
  id: number;
  name: string;
  pickupStartAt: number;
  pickupEndAt: number;
  address: string;
  products: ProductType[];
  images: string[];
  openAt: string;
  closeAt: string;
  specificAddress: string;
};

화면 표시 정보 위해 MarketType에 추가했습니다.

스크린샷 (선택)

iOS iOS (더미 포함) Android(더미 제외)
iOS iOS (더미 포함) Android

💬리뷰 요구사항(선택)

@l-lyun l-lyun requested review from 99mini and itslitulinchpin2 and removed request for 99mini November 12, 2024 09:48
}: Omit<MarketType, 'id' | 'images'>) => {
}: Omit<
MarketType,
'id' | 'images' | 'openAt' | 'closeAt' | 'specificAddress'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

타입을 새로 작성해도 괜찮을 것 같습니다.

Copy link
Contributor

@99mini 99mini left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@l-lyun l-lyun merged commit b38eebe into main Nov 14, 2024
1 check passed
@l-lyun l-lyun deleted the feature/feed-page-design branch November 14, 2024 06:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat(client/Feed): 피드 화면 디자인 작업
2 participants