File size: 159 Bytes
e11a8b4
b6b4588
e11a8b4
b6b4588
 
06c284e
b6b4588
3240a08
 
1
2
3
4
5
6
7
8
9
import gradio as gr
from gradio_modal import Modal

with gr.Blocks() as demo:
    gr.Textbox()
    with Modal(visible=True):
        gr.Number()

demo.launch()