TileDisclaimer#

Overview#

TileDisclaimer is a TileAbout using a the generic disclaimer .md file. This tile will have the “about_widget” id and “Disclaimer” title. it inherits from the TileAbout class.

In the following example we create a fake file on the fly and use it to display some text in a AboutTile.

from sepal_ui import sepalwidgets as sw
from pathlib import Path

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

disclaimer_tile = sw.TileDisclaimer()
disclaimer_tile

Note

More information can be found here.