fix indentation lines (#1914)

This commit is contained in:
Thai D. V 2024-01-22 12:27:56 +07:00 committed by GitHub
parent 2b446833da
commit 13af2d7e3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,6 +107,7 @@ public struct StatusRowView: View {
} }
} }
} }
.padding(.init(top: 12, leading: 0, bottom: isFocused ? 12 : 6, trailing: 0))
} }
.onAppear { .onAppear {
if !reasons.contains(.placeholder) { if !reasons.contains(.placeholder) {
@ -144,9 +145,9 @@ public struct StatusRowView: View {
#else #else
.listRowBackground(viewModel.highlightRowColor) .listRowBackground(viewModel.highlightRowColor)
#endif #endif
.listRowInsets(.init(top: 12, .listRowInsets(.init(top: 0,
leading: .layoutPadding, leading: .layoutPadding,
bottom: isFocused ? 12 : 6, bottom: 0,
trailing: .layoutPadding)) trailing: .layoutPadding))
.accessibilityElement(children: isFocused ? .contain : .combine) .accessibilityElement(children: isFocused ? .contain : .combine)
.accessibilityLabel(isFocused == false && accessibilityVoiceOverEnabled .accessibilityLabel(isFocused == false && accessibilityVoiceOverEnabled