mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-13 05:19:50 +04:00
7 lines
481 B
Markdown
7 lines
481 B
Markdown
|
|
# Number Input
|
||
|
|
|
||
|
|
Simple keyboard that limits user inputs to a full number (integer). Useful to enforce correct entries without the need of intense validations after a user input.
|
||
|
|
|
||
|
|
Definition of min/max values is required. Numbers are of type int32_t. If negative numbers are allowed withing min - max, an additional button is displayed to switch the sign between + and -.
|
||
|
|
|
||
|
|
It is also possible to define a header text, shown in this example app with the 3 different input options.
|