Ниже приведен небольшой пример проекта, как и где я могу реализовать код для записи вывода с консоли в текстовый файл.
struct ContentView: View {
@State var alertIsVisible: Bool = false
var body: some View {
Button(action: {
print("log")
self.alertIsVisible = true})
{
VStack{
Text("share")
.modifier(PrimaryLabel())
.alert(isPresented: $alertIsVisible) { () -> Alert in
return Alert(title: Text("share"), message: Text("use the following"), dismissButton: .default(Text("GO")))}
}
.padding()
}