Layout fixes

This commit is contained in:
Arkadiusz Fal
2022-11-12 02:39:44 +01:00
parent eb1e440ed2
commit eb9924bd4a
8 changed files with 117 additions and 102 deletions

View File

@@ -7,12 +7,12 @@ struct OpenVideosButton: View {
var body: some View {
Button(action: action) {
HStack {
HStack(spacing: 8) {
if let imageSystemName {
Image(systemName: imageSystemName)
}
if let text {
Text(text ?? "")
Text(text)
.fontWeight(.bold)
}
}