Text
A text input prompt that allows the user to enter a string.
Example

from inquirer_textual import prompts
if __name__ == '__main__':
result = prompts.text('Name:')
print(result)
A text input prompt that allows the user to enter a string.

from inquirer_textual import prompts
if __name__ == '__main__':
result = prompts.text('Name:')
print(result)