Btn#

Overview#

Btn is custom widget to provide easy to use button in the sepal_ui framework. it inherits from the SepalWidget class. Any argument from the original Btn ipyvuetify class can be used to complement it. The button icon needs to be searched in the fontAwesome library or mdi library <https://materialdesignicons.com>`_, if none is set, a fa-solid fa-check will be used. The default color is set to “primary”.

from sepal_ui import sepalwidgets as sw

# correct colors for the documentation
# set to dark in SEPAL by default
import ipyvuetify as v
v.theme.dark = False

btn = sw.Btn(
    msg = "The One btn",
    gliph = "fa-solid fa-cogs"
)
btn

Methods#

Btn can be used to launch function on any Javascript event such as “click”.

from sepal_ui import sepalwidgets as sw

# correct colors for the documentation
# set to dark in SEPAL by default
import ipyvuetify as v
v.theme.dark = False

btn = sw.Btn(
    msg = "The One btn",
    gliph = "fa-solid fa-cogs"
)
btn.on_event('click', lambda *args: print('Hello world!'))

btn

Note

More information can be found here.