react-native/ios/Native/Application/Views/ToolboxHeader.swift

22 lines
389 B
Swift

//
// ToolboxHeader.swift
// RNPlayground
//
// Created by Artur Gurgul on 02/08/2025.
//
import SwiftUI
struct ToolboxHeader: View {
@EnvironmentObject var sharedState: SharedState
var body: some View {
HStack {
Text("Actions")
Button("Make it blue") {
print("Making it blue")
sharedState.send(message: "hello from Swift!")
}
}
}
}