Skip to content

[#399] 메인탭 레이아웃 수정#401

Open
Hrepay wants to merge 3 commits intodevelopfrom
fix/#399
Open

[#399] 메인탭 레이아웃 수정#401
Hrepay wants to merge 3 commits intodevelopfrom
fix/#399

Conversation

@Hrepay
Copy link
Member

@Hrepay Hrepay commented Mar 14, 2026

#️⃣ 관련 이슈

Resolved #399

💡작업 내용

이번 PR에서 작업한 내용을 간략히 설명해주세요(이미지 첨부 가능)

  • DropDownView cornerRadius를 10으로 통일 (ESTextField와 동일하게)
  • 식당 카드 테두리 라운드 잘림 현상 수정 (테이블뷰 스타일 insetGrouped → grouped 변경)
  • 식당 카드 wrapperView에 좌우 20pt inset 및 배경 투명 처리
  • 섹션 헤더 좌우 여백 22pt 추가
  • 영업시간 안내 텍스트 중앙 정렬 및 하단 여백 조정
image image

💬리뷰 요구사항(선택)

리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요

ex) 메서드 XXX의 이름을 더 잘 짓고 싶은데 혹시 좋은 명칭이 있을까요?

  • x

Copilot AI review requested due to automatic review settings March 14, 2026 09:04
@Hrepay Hrepay self-assigned this Mar 14, 2026
@gemini-code-assist
Copy link

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이 PR은 메인 탭의 전반적인 UI 레이아웃과 일관성을 개선하기 위한 여러 시각적 조정을 포함합니다. 드롭다운 메뉴의 모서리 반경을 표준화하고, 식당 카드 표시 문제를 해결하며, 섹션 헤더와 카드 콘텐츠의 여백 및 정렬을 개선하여 사용자 경험을 향상시키는 데 중점을 두었습니다.

Highlights

  • DropDownView cornerRadius 통일: DropDownView의 cornerRadius를 10으로 통일하여 ESTextField와 일관성을 맞췄습니다.
  • 식당 카드 라운드 잘림 현상 수정: 식당 카드 테두리 라운드 잘림 현상을 수정하기 위해 UITableView 스타일을 .insetGrouped에서 .grouped로 변경하고, RestaurantMenuGroupCellwrapperViewmasksToBounds 속성을 추가했습니다.
  • 식당 카드 wrapperView 레이아웃 조정: 식당 카드 wrapperView에 좌우 20pt 인셋을 적용하고 배경을 투명하게 처리했습니다.
  • 섹션 헤더 여백 추가: 섹션 헤더에 좌우 22pt 여백을 추가하여 레이아웃을 조정했습니다.
  • 영업시간 안내 텍스트 정렬 및 여백 조정: 영업시간 안내 텍스트를 중앙 정렬하고 하단 여백을 22pt로 조정했습니다.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • EATSSU/App/Sources/Presentation/Auth/View/DropDownView.swift
    • tableViewbuttoncornerRadius를 12에서 10으로 변경했습니다.
  • EATSSU/App/Sources/Presentation/Home/View/HomeRestaurantView.swift
    • restaurantTableView의 초기화 스타일을 .insetGrouped에서 .grouped로 변경했습니다.
  • EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantMenuGroupCell.swift
    • wrapperViewmasksToBounds = true 속성을 추가했습니다.
    • 셀과 contentViewbackgroundColor.clear로 설정했습니다.
    • wrapperView의 제약 조건에 좌우 20pt 인셋을 추가했습니다.
    • emptyLabelhorizontalEdges 제약 조건을 centerX로 변경하고, bottom 인셋을 16에서 22로 조정했습니다.
  • EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift
    • stackViewhorizontalEdges 제약 조건에 22pt 인셋을 추가했습니다.
Activity
  • 이 PR에는 아직 사람의 활동(댓글, 리뷰 등)이 없습니다.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.


화면 속 모서리, 둥글게 깎아내니, 새로운 모습.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@Hrepay Hrepay review requested due to automatic review settings March 14, 2026 09:04
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

전반적으로 메인 탭의 레이아웃을 개선하는 좋은 수정입니다. PR에 설명된 대로 DropDownView의 cornerRadius 통일, 식당 카드 UI 수정, 섹션 헤더 여백 추가 등이 잘 반영되었습니다. 다만, 섹션 헤더의 여백 값이 PR 설명과 코드 간에 불일치하는 부분이 있어 수정을 제안합니다.

@Hrepay Hrepay requested a review from wjdalswl March 14, 2026 09:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Fix] UI 레이아웃 수정

1 participant