import SwiftUI struct SearchUserBar: View { @Binding var text: String @State var action: () -> Void var body: some View { ZStack { HStack { TextField( $text, placeholder: Text("Search User") .color(Color.gray) ) .padding([.leading, .trailing], 8) .frame(height: 32) .background(Color.white.opacity(0.4)) .cornerRadius(8) Button( action: action, label: { Text("Search") } ) .foregroundColor(Color.white) } .padding([.leading, .trailing], 16) } .frame(height: 64) .background(Color.yellow) } }