2025-05-26 21:07:50 +07:00

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