12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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())
- }
- }
|