gradio/demo/blocks_inputs/run.py
pngwn ed074f9cff
Static forms (#1264)
* refactor dynamic-static detection

* refactor dynamic-static detection
2022-05-15 18:44:15 +01:00

20 lines
387 B
Python

import gradio as gr
str = """Hello friends
hello friends
Hello friends
"""
with gr.Blocks() as demo:
txt = gr.Textbox(label="Input", lines=5)
txt_2 = gr.Textbox(label="Output")
txt_3 = gr.Textbox(str, label="Output", interactive=False)
btn = gr.Button("Submit")
btn.click(lambda a: a, inputs=[txt], outputs=[txt_2])
if __name__ == "__main__":
demo.launch()