ComposeTvKeyboard
ComposeTvKeyboard copied to clipboard
java.lang.IllegalArgumentException: Key "-" was already used. If you are using
java.lang.IllegalArgumentException: Key "-" was already used. If you are using
@gurureddydev If you haven't solved the issue yet, the hyphen and underscore were repeating themselves in the constructNumericKeys()
method under com.techlads.composetvkeyboard.domain.model
.
private fun constructNumericKeys() = mutableListOf<Key>().apply {
...
// Row five
add(ABC)
add(Clear)
add(Underscore) <--
add(Space)
add(Dash) <--
add(ActionArrow)
}
I have opened a PR on the same.
CC @UmairKhalid786