RISE has terrific potential. I would like to use it for my neuroimaging course where we we the anywidget based ipyniivue. However, while all anywidget controls display in Jupyter, RISE does not show any of them. Below is a minimal demo. Tested on MacOS.
import ipywidgets as widgets
from IPython.display import display
shade_options = {"none", "outside", "inside"}
shade_dropdown = widgets.Dropdown(
options=shade_options,
value="outside",
description="Shade:",
)
display(shade_dropdown)
