Aakiyaru 7a4584544b fix
2025-05-27 20:17:15 +07:00

25 lines
412 B
Swift

//
// SwiftUIView.swift
// UIKitComponents
//
// Created by User on 26.05.2025.
//
import SwiftUI
struct SelectTestView: View {
let variantds: [String] = ["Пол","Пол","Пол","Пол"]
init() {
FontWeightSetUp.allFonts()
}
var body: some View {
SelectView(title: "Пол", text: .constant(""), variants: variantds)
}
}
#Preview {
SelectTestView()
}