Skip to content

iVoGia/iTextField

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

iTextField want to bring an iOS textfield framework, easy to using for developer.

Requirements ⚙️

  • iOS 16.

Supported Platforms 📱

  • iOS 15.0.

Installation 💻

Swift Package Manager

Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. Once you have your Swift package set up, adding SkeletonUI as a dependency is as easy as adding it to the dependencies value of your Package.swift.

  dependencies: [
  .package(url: "https://github.com/iVoGia/iTextField.git", .branch("master"))
  ]

Features ✨

  • Custom Textfield.

Usage 🚀

Basic one-liner:

import iTextField
import SwiftUI

struct UsersView: View {
    @State var phone: String = ""
    var body: some View {
        AppPhoneTextField(titleString: Binding(get: {return "Phone"}, set: {_ in}),
             placeholderString: Binding(get: {return "Enter phone number"}, set: {_ in}),
             valueString: $phone)
    }
}

Change Log 📆

See CHANGELOG.md for details.

Contributing 🎉

  • Suggest your idea as a feature request for this project.
  • Create a bug report to help us improve.
  • Propose your own fixes, suggestions and open a pull request with the changes.

License 🎓

SkeletonUI is released under the MIT license. See LICENSE for details.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published