Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 23, 2024 16:19
Show Gist options
  • Select an option

  • Save takoikatakotako/b63c46d0f264c3986310356bee6420bc to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/b63c46d0f264c3986310356bee6420bc to your computer and use it in GitHub Desktop.
SwiftUIのTextFieldで表示するキーボードを指定する
import SwiftUI
struct ContentView: View {
@State var numberString = ""
var body: some View {
TextField("Input Number", text: $numberString)
.keyboardType(.decimalPad)
.textFieldStyle(RoundedBorderTextFieldStyle())
.padding()
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment