|
|
@@ -6,10 +6,31 @@ import SwiftUI |
|
|
|
import UIKit |
|
|
|
|
|
|
|
struct Content: View { |
|
|
|
@State private var selectedId = "1" |
|
|
|
var ids = ["1", "2", "3", "4"] |
|
|
|
var body: some View { |
|
|
|
MicItem.V() |
|
|
|
MicItem.V("1") |
|
|
|
MicItem.V("2") |
|
|
|
VStack { |
|
|
|
HStack { |
|
|
|
Text("MicItem id:") |
|
|
|
Picker("", selection: $selectedId) { |
|
|
|
ForEach(ids, id: \.self) { |
|
|
|
Text($0) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.pickerStyle(.segmented) |
|
|
|
Divider() |
|
|
|
.padding() |
|
|
|
MicItem.V(selectedId) |
|
|
|
Divider() |
|
|
|
.padding() |
|
|
|
List { |
|
|
|
ForEach(ids, id: \.self) { |
|
|
|
Text("\($0): TODO state") |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.padding() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@@ -32,7 +53,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate |
|
|
|
window?.makeKeyAndVisible() |
|
|
|
|
|
|
|
/**/print("ИГР App.didFLWO") |
|
|
|
testMic1() |
|
|
|
//testMic1() |
|
|
|
//testMic2() |
|
|
|
testMic2_id("1") |
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 3) { |
|
|
|