Skip to content

Commit

Permalink
Use messagease symbol layout for messagease number board
Browse files Browse the repository at this point in the history
Better match the [messagease layout](https://www.exideas.com/ME/iosfaq/numbers.png)

Small variation from the real ME in that blank spaces have been filled
with some of the extra math symbols that ME has on swipe-return keys,
which we can't have on TK
  • Loading branch information
bluedrink9 committed Feb 8, 2024
1 parent 17836cc commit a75c780
Show file tree
Hide file tree
Showing 2 changed files with 394 additions and 1 deletion.
12 changes: 12 additions & 0 deletions app/src/main/java/com/dessalines/thumbkey/keyboards/CommonKeys.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ import com.dessalines.thumbkey.utils.SlideType
import com.dessalines.thumbkey.utils.SwipeDirection
import com.dessalines.thumbkey.utils.SwipeNWay

val ABC_KEY_ITEM =
KeyItemC(
center =
KeyC(
display = KeyDisplay.IconDisplay(Icons.Outlined.Abc),
action = KeyAction.ToggleNumericMode(false),
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
backgroundColor = ColorVariant.SURFACE_VARIANT,
)

val NUMERIC_KEY_ITEM =
KeyItemC(
center =
Expand Down
Loading

0 comments on commit a75c780

Please sign in to comment.