Add custom symbols to nfc maker keyboard

This commit is contained in:
Willy-JL
2023-07-21 18:00:46 +01:00
parent bd00dc7c56
commit 2862994b4b
4 changed files with 8 additions and 0 deletions

View File

@@ -28,6 +28,8 @@ void nfc_maker_scene_contact_url_on_enter(void* context) {
text_input_set_minimum_length(text_input, 0);
text_input_add_illegal_symbols(text_input);
view_dispatcher_switch_to_view(app->view_dispatcher, NfcMakerViewTextInput);
}

View File

@@ -26,6 +26,8 @@ void nfc_maker_scene_https_on_enter(void* context) {
BIG_INPUT_LEN,
true);
text_input_add_illegal_symbols(text_input);
view_dispatcher_switch_to_view(app->view_dispatcher, NfcMakerViewTextInput);
}

View File

@@ -26,6 +26,8 @@ void nfc_maker_scene_text_on_enter(void* context) {
BIG_INPUT_LEN,
true);
text_input_add_illegal_symbols(text_input);
view_dispatcher_switch_to_view(app->view_dispatcher, NfcMakerViewTextInput);
}

View File

@@ -26,6 +26,8 @@ void nfc_maker_scene_url_on_enter(void* context) {
BIG_INPUT_LEN,
true);
text_input_add_illegal_symbols(text_input);
view_dispatcher_switch_to_view(app->view_dispatcher, NfcMakerViewTextInput);
}