You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`navigate(route: str, page: Page, args: tuple[Any]=None) -> None` - Navigate to specific route. Specify `args` to transfer arguments to other page.
108
108
-`navigate_homepage(page: Page, args: tuple[Any]=None) -> None` - Navigate to homepage.
109
109
-`render(page: Page, args: tuple[Any]=None) -> None` - Render current route. If there is no route like that throw ROUTE-404 (if specified). Should be called only one time.
@@ -157,9 +157,9 @@ app(target=main)
157
157
-`appbars: dict[int, Control] = {}` - Dictionary of appbars for each page (ID).
-`navigate(route: str, page: Page, args: tuple[Any]=None, parameters: dict=None) -> None` - Navigate to specific route. Specify `args` to transfer arguments to other page.
-`render(page: Page, args: tuple[Any]=None, route_parameters: dict[str, Any]={}) -> None` - Render current route. If there is no route like that throw ROUTE-404 (if specified). Should be called only one time.
164
164
-`set_route_data(route: str, data: Any) -> int` - Set route data (cookies-like mechanism). Returns success/fail. More <ahref="https://github.com/xzripper/flet_navigator/issues/4#issuecomment-1817908000">detailed</a>.
165
165
-`get_route_data(route: str) -> Any` - Get route data. More <ahref="https://github.com/xzripper/flet_navigator/issues/4#issuecomment-1817908000">detailed</a>.
-`set_appbar(appbar: Control) -> None` - Set appbar for current page. More <ahref="https://github.com/xzripper/flet_navigator/issues/4#issuecomment-1817908000">detailed</a>.
214
+
-`add(self, *controls: Control) -> None` - Append control(s) to page. Works as same as `Page.add`.
0 commit comments