We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16795e5 commit 0b72f8dCopy full SHA for 0b72f8d
1 file changed
Projects/Feature/FeatureCategorySetting/Sources/PokitCategorySettingView.swift
@@ -239,13 +239,20 @@ private extension PokitCategorySettingView {
239
if store.isPublicType {
240
VStack(alignment: .leading, spacing: 4) {
241
Button(action: { send(.키워드_바텀시트_활성화(true)) }) {
242
- Text("포킷 키워드")
243
- .pokitFont(.b1(.b))
244
- .foregroundStyle(.pokit(.text(.primary)))
245
-
246
- Spacer()
247
248
- Image(.icon(.arrowRight))
+ HStack {
+ Text("포킷 키워드")
+ .pokitFont(.b1(.b))
+ .foregroundStyle(.pokit(.text(.primary)))
+
+ Spacer()
249
+ Image(.icon(.arrowRight))
250
+ .resizable()
251
+ .aspectRatio(contentMode: .fit)
252
+ .frame(width: 24, height: 24)
253
+ .foregroundStyle(.pokit(.icon(.primary)))
254
+ }
255
+ .contentShape(Rectangle())
256
}
257
.buttonStyle(.plain)
258
0 commit comments