I just try pmui.Details unfortunately it displayed nothing, kindly please advise. I use latest panel material ui (0.8.0)
import panel as pn
import panel_material_ui as pmui
pn.extension()
long_content = pn.Column(*[
pn.pane.Str(f"Item {i}") for i in range(20)
], margin=5)
pmui.Details(
long_content,
title='Details'
)
The example code run in a Jupyter Notebook so calling “details” does produce the correct inline output. If you are running it on the cmd line you need.
details.show()
Launching server at http://localhost:65050
<panel.io.server.Server at 0x1d0f8233380>