1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import SwiftUI
- struct TextFieldClearButton: ViewModifier {
- @Binding var text: String
- func body(content: Content) -> some View {
- HStack {
- content
- if !text.isEmpty {
- Button(
- action: { self.text = "" },
- label: {
- Image(systemName: "xmark.circle.fill")
- .foregroundColor(Color(UIColor.placeholderText))
- }
- ).buttonStyle(BorderlessButtonStyle())
- }
- }
- }
- }
- struct ButtonRounded: ButtonStyle {
- var disabled = false
- func makeBody(configuration: Configuration) -> some View {
- configuration.label
- .padding(.horizontal, 40)
- .padding(.vertical, 10)
- .background(disabled ? Color(UIColor.placeholderText) : Color(NCBrandColor.shared.brand))
- .foregroundColor(disabled ? Color(UIColor.placeholderText) : Color(NCBrandColor.shared.brandText))
- .clipShape(Capsule())
- .opacity(configuration.isPressed ? 0.5 : 1.0)
- }
- }
|