@@ -3,6 +3,7 @@ package com.dessalines.thumbkey.keyboards
3
3
import androidx.compose.material.icons.Icons
4
4
import androidx.compose.material.icons.outlined.ArrowDropDown
5
5
import androidx.compose.material.icons.outlined.ArrowDropUp
6
+ import androidx.compose.material.icons.outlined.KeyboardCapslock
6
7
import com.dessalines.thumbkey.utils.ColorVariant
7
8
import com.dessalines.thumbkey.utils.FontSizeVariant
8
9
import com.dessalines.thumbkey.utils.KeyAction
@@ -159,7 +160,7 @@ val THUMBKEY_PT_V1_MAIN = KeyboardC(
159
160
action = KeyAction .CommitText (" é" ),
160
161
color = ColorVariant .MUTED
161
162
),
162
- SwipeDirection .BOTTOM to KeyC (
163
+ SwipeDirection .RIGHT to KeyC (
163
164
display = KeyDisplay .TextDisplay (" ê" ),
164
165
action = KeyAction .CommitText (" ê" ),
165
166
color = ColorVariant .MUTED
@@ -410,7 +411,7 @@ val THUMBKEY_PT_V1_SHIFTED = KeyboardC(
410
411
display = KeyDisplay .TextDisplay (" T" ),
411
412
action = KeyAction .CommitText (" T" )
412
413
),
413
- SwipeDirection .TOP to KeyC (
414
+ SwipeDirection .RIGHT to KeyC (
414
415
display = KeyDisplay .TextDisplay (" Ê" ),
415
416
action = KeyAction .CommitText (" Ê" ),
416
417
color = ColorVariant .MUTED
@@ -424,6 +425,11 @@ val THUMBKEY_PT_V1_SHIFTED = KeyboardC(
424
425
display = KeyDisplay .IconDisplay (Icons .Outlined .ArrowDropDown ),
425
426
action = KeyAction .ToggleShiftMode (false ),
426
427
color = ColorVariant .MUTED
428
+ ),
429
+ SwipeDirection .TOP to KeyC (
430
+ display = KeyDisplay .IconDisplay (Icons .Outlined .KeyboardCapslock ),
431
+ action = KeyAction .ToggleCapsLock ,
432
+ color = ColorVariant .MUTED
427
433
)
428
434
)
429
435
),
0 commit comments