Searched refs:password (Results 1 – 4 of 4) sorted by relevance
/lvgl-3.5.0/examples/widgets/textarea/ |
D | index.rst | 9 Text area with password field
|
/lvgl-3.5.0/docs/widgets/core/ |
D | textarea.md | 9 One line mode and password modes are supported. 64 The text area supports password mode which can be enabled with `lv_textarea_set_password_mode(texta… 68 In password mode `lv_textarea_get_text(textarea)` returns the actual text entered, not the bullet c…
|
/lvgl-3.5.0/demos/widgets/ |
D | lv_demo_widgets.c | 275 lv_obj_t * password = lv_textarea_create(panel2); in profile_create() local 276 lv_textarea_set_one_line(password, true); in profile_create() 277 lv_textarea_set_password_mode(password, true); in profile_create() 278 lv_textarea_set_placeholder_text(password, "Min. 8 chars."); in profile_create() 279 lv_obj_add_event_cb(password, ta_event_cb, LV_EVENT_ALL, kb); in profile_create() 364 lv_obj_set_grid_cell(password, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_CENTER, 3, 1); in profile_create() 438 lv_obj_set_grid_cell(password, LV_GRID_ALIGN_STRETCH, 0, 2, LV_GRID_ALIGN_START, 5, 1); in profile_create() 511 lv_obj_set_grid_cell(password, LV_GRID_ALIGN_STRETCH, 0, 2, LV_GRID_ALIGN_START, 5, 1); in profile_create()
|
/lvgl-3.5.0/docs/ |
D | CHANGELOG.md | 1581 - fix(textarea) buffer overflow in password mode with UTF-8 characters 1582 - fix(textarea) cursor position after hiding character in password mode 1814 - `lv_textarea`: fix character delete in password mode 1917 - `textarea`: If available in the font use bullet (`U+2022`) character in text area password
|