RxKeyboard icon indicating copy to clipboard operation
RxKeyboard copied to clipboard

Reactive Keyboard in iOS

Results 27 RxKeyboard issues
Sort by recently updated
recently updated
newest added

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.9 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies

First, turn on 'ReduceMotion' and 'Prefer Cross-FadeTransitions'. (Settings > Accessibility > Motion > ReduceMotion and Prefer Cross-Fade Transitions) And make a view controller containing UITableView like below. ```swift import UIKit...

Looks like RxKeyboard has the wrong behavior when we have inputAccessory view. Because `willShowVisibleHeight` will not trigger on the keyboard because once it was triggered only on inputAccessory view. Same...

Bumps [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader) from 1.4.0 to 1.6.3. Release notes Sourced from cocoapods-downloader's releases. 1.6.3 Enhancements None. Bug Fixes None. 1.6.2 Enhancements None. Bug Fixes None. 1.6.1 Enhancements None. Bug Fixes None....

dependencies

We can erase backticks in `guard let self = self` from [swift 4.2](https://github.com/apple/swift-evolution/blob/master/proposals/0079-upgrade-self-from-weak-to-strong.md) And it can be modified with `withUnretained` from RxSwift 6.0

Hello, On iPhone X, Xr, Xs in the example when you tap the search bar and the keyboard appear there is a gap between the bar and the keyboard. The...

Hi, I am getting a bit strange (unusuable results) for this: ``` RxKeyboard.instance.visibleHeight .drive(onNext: { [weak postCommentContainerConstraint] keyboardVisibleHeight in print("Keyboard visible height \(keyboardVisibleHeight)") self.view.setNeedsLayout() UIView.animate(withDuration: Constants.kCommentBoxAnimationDuration) { postCommentContainerConstraint?.constant = keyboardVisibleHeight...

Currently, the keyboard only start kick start keyboard dismiss interactively operation when drag down operation touching keyboard edge. ![rx](https://user-images.githubusercontent.com/308276/131772650-621dbe83-07e4-4242-8103-5912b4133183.gif) However, in WhatsApp app, the keyboard dismiss operation will kick start,...

Another workaround for #22, which does not make subspec. `UIApplication.shared` is unavailable on AppExtension environment. Use `Selector` to get the first window of UIApplication's shared instance. There will be no...