This commit is contained in:
zb
2023-08-30 11:26:55 +02:00
parent 65d278d907
commit a356774001
5 changed files with 152 additions and 36 deletions

View File

@@ -3,16 +3,16 @@ package net.mezimmah.wkt9.keypad
object KeyLayout {
// Map for number input mode
val numeric = mapOf(
Key.N0 to '0',
Key.N1 to '1',
Key.N2 to '2',
Key.N3 to '3',
Key.N4 to '4',
Key.N5 to '5',
Key.N6 to '6',
Key.N7 to '7',
Key.N8 to '8',
Key.N9 to '9',
Key.N0 to listOf('0'),
Key.N1 to listOf('1'),
Key.N2 to listOf('2'),
Key.N3 to listOf('3'),
Key.N4 to listOf('4'),
Key.N5 to listOf('5'),
Key.N6 to listOf('6'),
Key.N7 to listOf('7'),
Key.N8 to listOf('8'),
Key.N9 to listOf('9'),
)
val en_US = mapOf(