Skip to content

swiftui-theme-keyboard is unique application that showcases various keyboard input types use-cases along with supports dark-light theme.

Notifications You must be signed in to change notification settings

shahsaumil2001/swiftui-themeboard-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Themeboad App

swiftui-themeboard-app is a unique application that showcases various keyboard input types and use-cases along with supporting the dark-light theme.

swiftui-themeboard-app.mov

Technology Stack

  • Language: SwiftUI
  • Xcode Version: 16.0 and later

Key Features

  • Showcases various keyboard types.

  • Toggle for light/dark themes.

Use cases of Keyboard Types

  1. Default: Ideal for standard input like username or comment.
TextField("Enter...", text: $textFieldValue) .keyboardType(.default)
  1. NumberPad: Ideal for numeric input like PIN or account number.
TextField("Enter...", text: $textFieldValue) .keyboardType(.numberPad)
  1. DecimalPad: Ideal for prices, measurements, or any numeric with decimals.
TextField("Enter...", text: $textFieldValue) .keyboardType(.decimalPad)
  1. PhonePad: Ideal for phone number input with a traditional keypad layout.
TextField("Enter...", text: $textFieldValue) .keyboardType(.phonePad)
  1. EmailAddress: Ideal for an email address, utilizing the "@" and "." keys more quickly input..
TextField("Enter...", text: $textFieldValue) .keyboardType(.emailAddress)
  1. Twitter: "@" and "#" keys simplify Twitter handles and hashtags input.
TextField("Enter...", text: $textFieldValue) .keyboardType(.twitter)
  1. WebSearch: Ideal for quick search input with a dedicated search button.
TextField("Enter...", text: $textFieldValue) .keyboardType(.webSearch)

📫 Reach me for any questions/suggestion 👇:

LinkedInIcon

Please feel free to create pull request.

License

SwiftUI-KeyAnimationApp is written in SwiftUI and is open source.

About

swiftui-theme-keyboard is unique application that showcases various keyboard input types use-cases along with supports dark-light theme.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages