Skip to content

Commit fd05712

Browse files
authored
FND V3.8.6
1 parent d50036f commit fd05712

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

flet-navigator-docs.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">FletNavigator V3.8.5</h1>
1+
<h1 align="center">FletNavigator V3.8.6</h1>
22
<p align="center">FletNavigator is a minimalistic, powerful, and extremely fast navigation management library designed for Flet applications. It simplifies the handling of routes and page transitions while delivering optimal performance. With its lightweight architecture, FletNavigator supports both virtual and public routing, enabling seamless navigation with or without public URLs. It allows dynamic page rendering, efficient management of URL parameters and arguments, and customizable route change callbacks. FletNavigator supports nested and parameterized routes, and provides built-in mechanisms for handling 404 errors. Its intuitive design and focus on speed make it an ideal choice for building responsive and robust Flet-based applications.</p>
33

44
## Table of Contents
@@ -227,7 +227,8 @@ def func(pg: PageData, *args) -> None: # Template is registered as 'my_template_
227227
...
228228

229229
# Fetch/render a local template within your page.
230-
template(my_local_template, page_data)
230+
template('my_template', page_data)
231+
template('my_template_2', page_data)
231232
```
232233

233234
# Aliases
@@ -248,15 +249,16 @@ template(my_local_template, page_data)
248249
Alias for routes map: `dict[str, PageDefinition]`.
249250

250251
- **RouteParameters**
251-
Alias for route parameters map: `dict[str, Any]`.
252+
Alias for route parameters map: `dict[str, Union[str, int, bool, None]]`.
252253

253254
# Disabling FletNavigator logger
254-
You can disable FletNavigator logger by setting `propagate` to `False`.
255+
You can disable FletNavigator logger by setting `FN`'s logger `propagate` property to `False`.
255256

256257
```python
257258
from logging import getLogger
258259

260+
# Append this line after the navigator has been initialized.
259261
getLogger('FN').propagate = False
260262
```
261263

262-
<hr><p align="center"><b>FletNavigator V3.8.5</b></p>
264+
<hr><p align="center"><b>FletNavigator V3.8.6</b></p>

0 commit comments

Comments
 (0)