Tags: AllDotPy/FletX
Tags
fletx.core.page: Simplify usage of navigation widgets with FletXPage This PR Brings answer to the #86 issue. It simplifies the usage of navigation widgets with FletxPage overriding needed navigation widget builder functions. Example Usage class MainPage(FletXPage): """Main Page""" def __init__(self): super().__init__( padding = padding.symmetric( horizontal = 0, vertical = 0 ), bgcolor = Theme.scaffold_bgcolor ) def build_navigation_bar(self): """ Override this method to build a custom navigation bar. Return None if no bottom app bar is needed. """ return ft.NavigationBar(...) def build_app_bar(self) -> Optional[ft.AppBar]: """ Override this method to build a custom app bar. Return None to use the default app bar or hide it. """ return ft.AppBar(...) ...
Doc: Add services.md for Services section in getting-started; flet.co… …re: Add set_errot method to FletXService in services.py (#63) * Doc: Add services.md for Services section in getting-started; flet.core: Add set_errot method to FletXService in services.py.
Update Readme with new Added features and tasks. Update Readme
PreviousNext