File size: 223 Bytes
205fec5
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

with gr.Blocks() as demo:
    d = gr.Dropdown(["Choice 1", "Choice 2", "Other"])
    t = gr.Textbox(visible=False)
    d.change(lambda x: gr.Dropdown.update(visible=x=="Other"), d, t)
    
demo.launch()