xinchen9 commited on
Commit
68dce92
·
verified ·
1 Parent(s): 087dd17

[Update]add one row

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -12,8 +12,10 @@ with gr.Blocks() as demo:
12
  inbtw = gr.Button("Between")
13
  text4 = gr.Textbox(label="prompt 1")
14
  text5 = gr.Textbox(label="prompt 2")
15
- with gr.Column(scale=2, min_width=600):
16
- img1 = gr.Image("images/cheetah.jpg")
17
- btn = gr.Button("Go")
 
 
18
 
19
  demo.launch()
 
12
  inbtw = gr.Button("Between")
13
  text4 = gr.Textbox(label="prompt 1")
14
  text5 = gr.Textbox(label="prompt 2")
15
+ with gr.Column(scale=1, min_width=600):
16
+ with gr.Row():
17
+ img1 = gr.Image("images/cheetah.jpg")
18
+ with gr.Row():
19
+ img2 = gr.Image("images/cheetah.jpg")
20
 
21
  demo.launch()