From c1f53682f34625215214d7cfe9069156b4b7bd62 Mon Sep 17 00:00:00 2001 From: BlackyHawky Date: Tue, 8 Oct 2024 13:17:39 +0200 Subject: [PATCH] Updated Layouts (markdown) --- Layouts.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Layouts.md b/Layouts.md index 0faa15d..e97b4ae 100644 --- a/Layouts.md +++ b/Layouts.md @@ -381,6 +381,28 @@ Here are the different classes: ``` +* If you don't want to enable the _Number row_ setting (in this case the keyboard view has 4 rows) but want to have 5 rows in the Symbol or More Symbols view, you need to add an empty row with the code `[ { "type": "placeholder" } ],` at the beginning of the row editing. + +
+ Click to see example with `[ { "type": "placeholder" } ],` +
+ + ```json + // Start of file + [ + // EMPTY ROW + [ + { "type": "placeholder" } + ], + // ROW 1 + [ + ], + // etc. + ] + ``` + +
+ # Examples of JSON files [Here](https://github.com/Helium314/HeliBoard/discussions/1132#discussion-7260853) are some sample JSON files that customize all the keyboard views. \ No newline at end of file