Feature request: Add "bottom" scroll behavior to container

The new feature write_stream() in streamlit 1.31.0 works well with my app. The text output from a chess engine is correctly streamed in the ui. I wrap the write_stream() in a container() and set containerā€™s height to 200. Since the output is long and with a given height, a veritcal scrollbar is shown. This scrollbar goes up as more data are streamed. I would like to request a feature to add an option in the container for the scrollbar to go to the bottom because the engineā€™s latest output including the bestmove are at the bottom.

Sample code

# The FEN string for the chessboard position
fen = st.text_input('Enter FEN')
asec = st.number_input('Analysis time in sec.', value=1.0, step=0.1)
enginefn = st.text_input('Input engine file')

if fen and enginefn:
    board = chess.Board(fen)
    board_svg = chess.svg.board(board=board, size=300)
    st.image(board_svg)

    if st.button('Analyze position'):
        with st.container(border=True, height=200):
            st.write_stream(run_engine(enginefn, fen, asec))

Sample App output

1 Like

Hi @ferdy

Thanks for the input and thoughts. Would you like to file for a feature request at Issues Ā· streamlit/streamlit Ā· GitHub

Thanks!

I would like to file it. But this is not a priority. will file at a later time.

1 Like