25 lines
412 B
Swift
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()
|
|
}
|