Stqdm

Greetings,
Is it possible to make the stqdm bar higher? I want to make a screen with nothing but a huge fat progress bar.

Hi @Ibrahim_Salim_Omari, welcome to the forum! Here’s one way:

from time import sleep

import streamlit as st
from stqdm import stqdm

st.markdown("<style>.st-av{height: 200px}</style>", unsafe_allow_html=True)


for _ in stqdm(range(50)):
    sleep(0.5)