Thanks @andfanilo and @randyzwitch. Couldn’t resist building something that leverages the new horizontal layout capabilities (Streamlit suddenly became even more powerful - love it!)
Hi, have you had success in using st.empty() to create a placeholder for a metric at top of page, where the actual metric will only be known, or updated, after call to function with values from say a text input further down the page? I’ve tried:
metric = st.empty()
then
metric.metric and metric.metric_row
but get the following error message:
metric() is not a valid Streamlit command.`
It could quite likely be some newbie error I’m making. Thanks for any guidance!