Navigator for Flet.
Project description
FletNavigator & FletReStyle
Simple and fast navigator (router) for Flet (Python) that provides everything for comfortable and easy multi-page applications creation.
Click here for documentation.
Using Example:
from flet import app, Text
from flet_navigator import PageData, render, anon, route
@route('/')
def main_page(pg: PageData) -> None:
pg.add(Text('Main Page!')) # or `pg.page.add`.
@route('second_page')
def second_page(pg: PageData) -> None:
... # Second page content.
app(anon(render, virtual=True))
(Deprecated Example GIF).
FletNavigator V2.8.5
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flet_navigator-2.8.5.tar.gz
(8.2 kB
view details)