import streamlit as st import streamlit.components.v1 as components def display_bpmn_xml(bpmn_xml, vizi_file, is_mobile=False, screen_width=300): if is_mobile: html_template = f""" BPMN Modeler
""" components.html(html_template, height=screen_width, width=screen_width) else: html_template = f""" BPMN Modeler
""" components.html(html_template, height=1000, width=int(9/10*screen_width))