12345678910111213141516171819 |
- from fastapi import FastAPI
- from nicegui import app, ui
- def init(fastapi_app: FastAPI) -> None:
- @ui.page('/')
- def show():
- ui.label('Hello, FastAPI!')
- # NOTE dark mode will be persistent for each user across tabs and server restarts
- ui.dark_mode().bind_value(app.storage.user, 'dark_mode')
- ui.checkbox('dark mode').bind_value(app.storage.user, 'dark_mode')
- ui.run_with(
- fastapi_app,
- mount_path='/gui', # NOTE this can be omitted if you want the paths passed to @ui.page to be at the root
- storage_secret='pick your private secret here', # NOTE setting a secret is optional but allows for persistent storage per user
- )
|