Skip to content

Commit 4aa7953

Browse files
committed
[feat] #196 PokitBottomButton 변경사항 적용
1 parent 7de091b commit 4aa7953

File tree

7 files changed

+2
-11
lines changed

7 files changed

+2
-11
lines changed

Projects/Feature/FeatureCategoryDetail/Sources/Sheet/CategoryFilterSheet.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ private extension CategoryFilterSheet {
113113
)
114114
}
115115
)
116-
.padding(.bottom, 36)
117116
}
118117
.padding(.horizontal, 20)
119118
}

Projects/Feature/FeatureCategorySetting/Sources/Sheet/PokitKeywordBottomSheet.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ public struct PokitKeywordBottomSheet: View {
6767
state: keywordSheetBottomButtonState,
6868
action: { action(selectedKeywordType) }
6969
)
70-
.padding(.top, 16)
7170
}
7271
.padding(.horizontal, 20)
7372
.padding(.top, 48)

Projects/Feature/FeatureLogin/Sources/AgreeToTerms/AgreeToTermsView.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public extension AgreeToTermsView {
4242
state: store.isPersonalAndUsageArgee && store.isServiceAgree ? .filled(.primary) : .disable,
4343
action: { send(.다음_버튼_눌렀을때) }
4444
)
45-
.padding(.bottom, 36)
4645
}
4746
.pokitMaxWidth()
4847
.padding(.horizontal, 20)

Projects/Feature/FeatureLogin/Sources/RegisterNickname/RegisterNicknameView.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ public extension RegisterNicknameView {
4545
: .disable,
4646
action: { send(.다음_버튼_눌렀을때) }
4747
)
48-
.padding(.bottom, store.isKeyboardVisible ? -26 : 0)
49-
.padding(.bottom, 36)
50-
// .setKeyboardHeight()
48+
.keyboardAnchor(store.isKeyboardVisible)
5149
}
5250
.pokitMaxWidth()
5351
.padding(.horizontal, 20)

Projects/Feature/FeatureLogin/Sources/SelectField/SelectFieldView.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ public extension SelectFieldView {
3939
action: { send(.nextButtonTapped) }
4040
)
4141
.pokitMaxWidth()
42-
.padding(.bottom, 36)
4342
}
4443
.padding(.horizontal, 20)
4544
.pokitNavigationBar {

Projects/Feature/FeatureLogin/Sources/SignUpDone/SignUpDoneView.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public extension SignUpDoneView {
4545
)
4646
.pokitMaxWidth()
4747
.padding(.horizontal, 20)
48-
.padding(.bottom, 36)
4948
.background(.pokit(.bg(.base)))
5049
}
5150
.ignoresSafeArea(edges: .bottom)

Projects/Feature/FeatureSetting/Sources/Setting/NickNameSetting/NickNameSettingView.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ public extension NickNameSettingView {
4444
state: store.buttonState,
4545
action: { send(.저장_버튼_눌렀을때) }
4646
)
47-
.padding(.bottom, store.isKeyboardVisible ? -26 : 0)
48-
.padding(.bottom, 36)
49-
// .setKeyboardHeight()
47+
.keyboardAnchor(store.isKeyboardVisible)
5048
}
5149
.padding(.horizontal, 20)
5250
.padding(.top, 16)

0 commit comments

Comments
 (0)