MaskedTextFieldSwiftUI
The MaskedTextFieldSwiftUI package empowers developers to easily integrate customizable masked text input fields into their SwiftUI applications. Masked text fields provide a structured way for users to input data by enforcing a specific format, such as phone numbers, dates, or credit card numbers, while maintaining a clean and intuitive user experience.
Key Features
-
Flexible Masking: Define custom masks to specify the format in which user input should be entered, allowing for precise control over the data format.
-
Input Validation: Automatically validate user input against the specified mask, ensuring that only valid data is accepted and processed.
-
Placeholder Support: Provide placeholders that guide users on the expected format for input, improving usability and reducing errors.
-
Dynamic Formatting: Enable dynamic updates to the mask based on user input or application requirements, adapting to various scenarios seamlessly.
-
Customization Options: Customize the appearance and behavior of the masked text field to align with the application's design language and user preferences.
-
Integration with SwiftUI: Seamlessly integrate the masked text field component into SwiftUI views, leveraging SwiftUI's declarative syntax for building user interfaces.
Whether you're building a form for collecting user information, implementing a payment processing system, or creating any other data entry interface, the SwiftUI Masked Text Field package provides a reliable solution for enforcing data format consistency and enhancing user input experiences in SwiftUI applications.
Installation
Requirements
- iOS 15.0+
Via Swift Package Manager
In Xcode, within your project, select: File > Swift Packages > Add Package Dependency
, then paste the URL https://github.com/darealkhan/MaskedTextFieldSwiftUI.git and proceed to download it.
How to Use
To use MaskedTextFieldSwiftUI
, you need to follow the simple steps below.
- Import the package into your project.
import MaskedTextFieldSwiftUI
- Create two state variables to receive changes in the text field.
rawText
will contain the cleared text from masked text. You can also usemaskedText
if needed.
@State var rawText = ""
@State var maskedText = ""
- Create a
MaskType
to specify the type of mask. ThemaskString
parameter is a string that replaces mask characters with your typed characters. Separators are used to retrieve raw text from masked text, so each character in separators will be deleted in raw text. Finally, themaskChar
parameter specifies which character will be used for masking.
let mastType = MaskType(
maskString: "####-####-####-####",
seperators: [
.emptySpace,
.customSeperator("-")
],
maskChar: "#"
)
- Create a
MaskedTextFieldConfig
for customizing textField related settings. There are numerous options you can customize; below, I'll list them all, and you can select which ones you want to customize.
Setting | Type |
---|---|
placeHolder | String |
attributedPlaceholder | NSAttributedString |
font | UIFont |
textColor | UIColor |
keyboardType | UIKeyboardType |
autocorrectionType | UITextAutocorrectionType |
autocapitalizationType | UITextAutocapitalizationType |
For example, let's create a simple configuration with a placeholder.
let config = MaskedTextFieldConfig(
placeHolder: "Card Number"
)
- Lastly, create a text field with masked text and raw text as binding variables, along with configuration and mask type settings.
MaskedTextField(
rawText: $rawTest,
maskedText: $maskedTest,
maskType: maskType,
config: config
)
Example
Real-world example of how you can use MaskedTextFieldSwiftUI
can be found in the package files as well
import Foundation
import MaskedTextFieldSwiftUI
import SwiftUI
struct ContentView: View {
@State private var testFields = TestField.getFields()
var body: some View {
NavigationView {
List($testFields) { field in
Section(field.maskType.wrappedValue.maskString) {
textFieldTestView(with: field)
}
}
.navigationTitle("Masked TextField ðŸŽ")
}
}
private func textFieldTestView(
with field: Binding<TestField>
) -> some View {
VStack {
MaskedTextField(
rawText: field.rawText,
maskedText: field.maskedText,
maskType: field.maskType.wrappedValue,
config: field.config.wrappedValue
)
Divider()
Text("Raw text is: \(field.rawText.wrappedValue)")
.font(.caption)
.foregroundStyle(.secondary)
.frame(
maxWidth: .infinity,
alignment: .leading
)
Text("Masked text is: \(field.maskedText.wrappedValue)")
.font(.caption)
.foregroundStyle(.secondary)
.frame(
maxWidth: .infinity,
alignment: .leading
)
}
}
}
struct TestField: Identifiable {
let id = UUID()
var rawText = ""
var maskedText = ""
var config: MaskedTextFieldConfig
var maskType: MaskType
static func getFields() -> [TestField] {
return [
.init(
config: MaskedTextFieldConfig(
placeHolder: "Credit Card Number"
),
maskType: .init(
maskString: "####-####-####-####",
seperators: [
.emptySpace,
.customSeperator("-"),
]
)
),
.init(
config: MaskedTextFieldConfig(
placeHolder: "Number"
),
maskType: .init(
maskString: "(###)-###-##-##",
seperators: [
.emptySpace,
.customSeperator("("),
.customSeperator(")"),
.customSeperator("-")
]
)
),
.init(
config: MaskedTextFieldConfig(
placeHolder: "Zip adress",
autocapitalizationType: .allCharacters
),
maskType: .init(
maskString: "## ####",
seperators: [
.emptySpace
]
)
),
.init(
config: MaskedTextFieldConfig(
placeHolder: "Ip address"
),
maskType: .init(
maskString: "###.###.#.#",
seperators: [
.customSeperator(".")
]
)
)
]
}
}
#Preview {
ContentView()
.preferredColorScheme(.dark)
}