1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 20:49:49 +04:00

Text Input improvements, added cursor and ability to set minimal length

thanks to WillyJL
This commit is contained in:
MX
2023-05-14 01:44:00 +03:00
parent e5c2e8e5d7
commit f08dd2fd03
3 changed files with 124 additions and 39 deletions

View File

@@ -70,6 +70,8 @@ void text_input_set_validator(
TextInputValidatorCallback callback,
void* callback_context);
void text_input_set_minimum_length(TextInput* text_input, size_t minimum_length);
TextInputValidatorCallback text_input_get_validator_callback(TextInput* text_input);
void* text_input_get_validator_callback_context(TextInput* text_input);