Skip to main content

Fix Streamlit containers relative to viewport instead of page

Project description

streamlit-float PyPi - Downloads

Fix the vertical position of Streamlit containers relative to viewport instead of page

Installation

Install streamlit-float with pip:

pip install streamlit-float

Usage

This package provides two ways to float a container. The first is to call the float method of a container:

import streamlit as st
from streamlit_float import *

# initialize float feature/capability
float_init()

col1, col2 = st.columns(2)

# Fix/float the whole column
col1.write("This entire column is fixed/floating")
col1.float()

with col2:
    container = st.container()
    # Fix/float a single container inside
    container.write("This text is in a container that is fixed")
    container.float()

Alternatively, you can use the float_parent method:

import streamlit as st
from streamlit_float import *

# initialize float feature/capability
float_init()

col1, col2 = st.columns(2)

# Fix/float the whole column
with col1:
    st.write("This entire column is fixed/floating")
    float_parent()

with col2:
    container = st.container()
    # Fix/float a single container inside
    with container:
        st.write("This text is in a container that is fixed")
        float_parent()

Note that the float feature does not work well with expander and tabs containers. Also, it is recommended to call the float methods on a container after all the content has been added to it.

If instead you would like to float/fix a container that is constructed in html markup and added using Streamlits markdown method (with unsafe_allow_html=True), make sure to add 'floating' to the containers classlist.

st.markdown('''<div class="floating">..content..</div>''', unsafe_allow_html=True)

License

This project is licensed under the MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_float-0.4.0.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

streamlit_float-0.4.0-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file streamlit_float-0.4.0.tar.gz.

File metadata

  • Download URL: streamlit_float-0.4.0.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for streamlit_float-0.4.0.tar.gz
Algorithm Hash digest
SHA256 ef1114d3b3b6356ae9175aaa89626bcf62bee476ec40a6e94e3a209accbdb82c
MD5 9d58d1d085c801e0b258724d1cd1ecb9
BLAKE2b-256 909c2b01908b1821320901a0e30758b7eb9661a87983fecce11f5e39e03f120c

See more details on using hashes here.

File details

Details for the file streamlit_float-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_float-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3818cefe0127dd4517f39f7e9cc84acdb387e8477db3656f8e1ab8c68aa34d20
MD5 4fbacf4f0a8c0097d342cb4b2b02037a
BLAKE2b-256 d9e0b951225656f9e22a435faa7b16ab193e1114684e45b68dbb36bd84c8e1b1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page