swift-focuser icon indicating copy to clipboard operation
swift-focuser copied to clipboard

Focus text field in SwiftUI dynamically and progress through form using iOS keyboard.

Results 13 swift-focuser issues
Sort by recently updated
recently updated
newest added

This PR addresses: https://github.com/art-technologies/swift-focuser/issues/6 https://github.com/art-technologies/swift-focuser/issues/8 And also adds automatic conformance to `FocusStateCompliant`, so that whoever has an enum that's `CaseIterable` can conform to `FocusStateCompliant` and get free implementation instead of...

If use .focusedLegacy modifier then these callbacks are never fired for TextField

After tapping through any input fields with "next" on the soft keyboard, reaching the last field the "done" button appears which when tapped should trigger the submit button under an...

Hello @AugustDev @JamesRoome, Do you have license (i.e. MIT license) for [swift-focuser](https://github.com/art-technologies/swift-focuser) published somewhere? We want to use it in our project, but can't find a link which should we...

Using Focuser in an input form in a sub view of navigation view, when the keyboard is closed after last input field, tapping on form submit button makes the keyboard...

Hi, first thanks for package. There is an issue if Textfield is within Geometry reader, last one keeps keyboard reopening because of view redrawn. GeometryReader { metrics in VStack{ TextField("Username",...

I've got one TextField in my view which gets focus .onAppear. The Done button closes the Softkeyboard correctly. If I'm interacting with any Buttons, Toggles in the same List the...