test2023h5's picture
Upload 44 files
7798609 verified
raw
history blame contribute delete
754 Bytes
'''
title: Textarea
'''
import streamsync as ss
ss.md("## ss.textarea")
ss.space()
ss.md("#### πŸ”… Example")
ss.md("---")
# Basic usage
# test = ss.text_input("hello, world", type="textarea")
mytext = ss.textarea("hello, world")
ss.write("---")
ss.write("#### πŸ”Ž Code")
ss.md('''
```python
import simplestart as ss
mytext = ss.textarea("hello, world")
''')
ss.space()
ss.md("#### πŸ”… Get the text value of the textarea")
ss.md("---")
def myclick():
ss.message(mytext.value)
ss.button("Get Text", onclick=myclick)
ss.write("---")
ss.write("#### πŸ”Ž Code Snippet")
ss.md('''
```python
#...
def myclick():
ss.message(mytext.value)
ss.button("Get Text", onclick=myclick)
''')
mytext.width = 500
mytext.variant = "filled"