When I have added a Rerun component to my layout but haven't yet added any inputs it will almost take up the entire screen and not appear where it should.
import gradio as gr
from gradio_rerun import Rerun
with gr.Blocks() as app:
with gr.Row():
viewer = Rerun(streaming=True)
with gr.Row():
button = gr.Button()
app.launch()
When I have added a
Rerun
component to my layout but haven't yet added any inputs it will almost take up the entire screen and not appear where it should.If I had this line
it behaves as expected.