mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-04-27 02:14:45 +00:00
Fix #1849
This commit is contained in:
parent
7ac9a750cb
commit
c847de8f47
1 changed files with 13 additions and 3 deletions
|
@ -57,10 +57,20 @@ extension StatusEditor {
|
||||||
actionsView
|
actionsView
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
HStack(alignment: .center, spacing: 16) {
|
ViewThatFits {
|
||||||
actionsView
|
HStack(alignment: .center, spacing: 16) {
|
||||||
|
actionsView
|
||||||
|
}
|
||||||
|
.padding(.horizontal, .layoutPadding)
|
||||||
|
|
||||||
|
ScrollView(.horizontal) {
|
||||||
|
HStack(alignment: .center, spacing: 16) {
|
||||||
|
actionsView
|
||||||
|
}
|
||||||
|
.padding(.horizontal, .layoutPadding)
|
||||||
|
}
|
||||||
|
.scrollIndicators(.hidden)
|
||||||
}
|
}
|
||||||
.padding(.horizontal, .layoutPadding)
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue