Skip to content

Commit

Permalink
fix: 보틀 보관함 리스트 최대 width 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JongHoooon committed Nov 7, 2024
1 parent 1146d85 commit bd48661
Showing 1 changed file with 16 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public struct BottleStorageView: View {
}
.padding(.top, 72)
.frame(maxHeight: .infinity, alignment: .top)
.frame(maxWidth: .infinity)
.background(to: ColorToken.background(.primary))
.padding(.bottom, BottleConstants.bottomTabBarHeight.value)
.setTabBar(selectedTab: .bottleStorage) { selectedTab in
Expand Down Expand Up @@ -73,34 +74,32 @@ private extension BottleStorageView {
var bottlsList: some View {
if store.pingPongBottleList.isEmpty && !store.isLoading {
VStack(alignment: .center, spacing: 0.0) {

Spacer()
BottleImageView(type: .local(bottleImageSystem: .illustraition(.basket)))
.frame(height: 180)
.frame(width: 180)
.aspectRatio(1.0, contentMode: .fit)
.padding(.bottom, .xl)

WantedSansStyleText(
"아직 대화를 시작하지 않으셨군요!",
style: .subTitle1,
color: .primary
)
.padding(.bottom, .xs)
WantedSansStyleText(
"아직 대화를 시작하지 않으셨군요!",
style: .subTitle1,
color: .primary
)
.padding(.bottom, .xs)

WantedSansStyleText(
"마음에 드는 상대를 찾아\n가치관 문답을 시작해 볼까요?",
style: .body,
color: .tertiary
)
.lineSpacing(5)
.multilineTextAlignment(.center)
.padding(.bottom, .xl)
WantedSansStyleText(
"마음에 드는 상대를 찾아\n가치관 문답을 시작해 볼까요?",
style: .body,
color: .tertiary
)
.lineSpacing(5)
.multilineTextAlignment(.center)
.padding(.bottom, .xl)

SolidButton(title: "모래사장 바로가기", sizeType: .extraSmall, buttonType: .throttle, action: { store.send(.sandBeachButtonDidTapped) })

Spacer()
}
}
} else {
ScrollView {
VStack(spacing: .md) {
Expand Down

0 comments on commit bd48661

Please sign in to comment.