mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-13 04:51:21 +00:00
fix indentation lines (#1914)
This commit is contained in:
parent
2b446833da
commit
13af2d7e3f
1 changed files with 3 additions and 2 deletions
|
@ -107,6 +107,7 @@ public struct StatusRowView: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
.padding(.init(top: 12, leading: 0, bottom: isFocused ? 12 : 6, trailing: 0))
|
||||
}
|
||||
.onAppear {
|
||||
if !reasons.contains(.placeholder) {
|
||||
|
@ -144,9 +145,9 @@ public struct StatusRowView: View {
|
|||
#else
|
||||
.listRowBackground(viewModel.highlightRowColor)
|
||||
#endif
|
||||
.listRowInsets(.init(top: 12,
|
||||
.listRowInsets(.init(top: 0,
|
||||
leading: .layoutPadding,
|
||||
bottom: isFocused ? 12 : 6,
|
||||
bottom: 0,
|
||||
trailing: .layoutPadding))
|
||||
.accessibilityElement(children: isFocused ? .contain : .combine)
|
||||
.accessibilityLabel(isFocused == false && accessibilityVoiceOverEnabled
|
||||
|
|
Loading…
Reference in a new issue