26 lines
434 B
Swift
26 lines
434 B
Swift
//
|
|
// SwiftUIView.swift
|
|
// UIKitComponents
|
|
//
|
|
// Created by User on 26.05.2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct TextFieldError: View {
|
|
|
|
init() {
|
|
FontWeightSetUp.allFonts()
|
|
}
|
|
|
|
var body: some View {
|
|
VStack {
|
|
CustomTextField(titleKey: "Имя", error: true, errorText: "Имя не может быть пустым", text: .constant(""))
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
TextFieldError()
|
|
}
|