mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
40 lines
1.1 KiB
Swift
40 lines
1.1 KiB
Swift
import SwiftUI
|
|
|
|
struct OpenVideosButton: View {
|
|
var text: String?
|
|
var imageSystemName: String?
|
|
var action: () -> Void = {}
|
|
|
|
var body: some View {
|
|
Button(action: action) {
|
|
HStack(spacing: 8) {
|
|
if let imageSystemName {
|
|
Image(systemName: imageSystemName)
|
|
}
|
|
if let text {
|
|
Text(text.localized())
|
|
.fontWeight(.bold)
|
|
}
|
|
}
|
|
.padding(.vertical, 10)
|
|
.frame(minHeight: 45)
|
|
.frame(maxWidth: .infinity)
|
|
.contentShape(Rectangle())
|
|
}
|
|
.foregroundColor(.accentColor)
|
|
.buttonStyle(.plain)
|
|
.background(buttonBackground)
|
|
}
|
|
|
|
var buttonBackground: some View {
|
|
RoundedRectangle(cornerRadius: 4)
|
|
.foregroundColor(Color.accentColor.opacity(0.33))
|
|
}
|
|
}
|
|
|
|
struct OpenVideosButton_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
OpenVideosButton(text: "Open Videos", imageSystemName: "play.circle.fill")
|
|
}
|
|
}
|