Delete button does not appear
Using version 0.3.3 (SPM).
The delete button is missing from the category view.
let keyboardSettings = KeyboardSettings(bottomType: .categories)
keyboardSettings.isShowPopPreview = true
keyboardSettings.needToShowAbcButton = false
keyboardSettings.needToShowDeleteButton = true
keyboardSettings.updateRecentEmojiImmediately = true
The delete button does not appear.
Using the pageControl bottom type and a delete button results in a crash.
YES, the xib constraints are bad.
YES, the xib constraints are bad.
I added constraints its work well.
Adding the following code after initialization can solve this problem:
let bottomView = emojiView.subviews.last?.subviews.last let collecitonViewToSuperViewTrailingConstraint = bottomView?.value(forKey: "collecitonViewToSuperViewTrailingConstraint") as? NSLayoutConstraint collecitonViewToSuperViewTrailingConstraint?.priority = .defaultLow