Post

Replies

Boosts

Views

Activity

Reply to Gesture: System gesture gate timed out.
struct ContentView: View { @State var phoneNumber:String = "" var body: some View { VStack { Image(systemName: "globe") .imageScale(.large) .foregroundStyle(.tint) Text("Hello, world!") TextField("input",text: $phoneNumber) .font(.title3) .foregroundColor(Color.blue) .frame(maxWidth: .infinity) // <0x105105aa0> Gesture: System gesture gate timed out. .keyboardType(.numberPad) .padding() } .padding() } }
Mar ’24