mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 02:01:02 +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 {
|
.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
|
||||||
|
|
Loading…
Reference in a new issue