Metadata-Version: 2.1
Name: flet-navigator
Version: 2.7.5
Summary: Navigator for Flet.
Home-page: https://github.com/xzripper/flet_navigator
Download-URL: https://github.com/xzripper/flet_navigator/archive/refs/tags/v2.7.5.tar.gz
Author: Ivan Perzhinsky.
Author-email: name1not1found.com@gmail.com
License: MIT
Keywords: navigator,router,utility,flet
Classifier: Development Status :: 5 - Production/Stable 
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/x-rst
License-File: LICENSE.txt

~~~~~~~~~~~~~~~~~~~~~
FletNavigator V2.7.5
~~~~~~~~~~~~~~~~~~~~~

.. image :: https://github.com/xzripper/flet_navigator/raw/main/example2.gif
   :width: 500

FletNavigator & `FletReStyle <https://github.com/xzripper/flet_restyle>`_

Simple and fast navigator (router) for Flet (Python) that provides everything for comfortable and easy multi-page applications creation.

Click `here <https://github.com/xzripper/flet_navigator/blob/main/flet-navigator-docs.md>`_ for documentation.

Using Example:

.. code :: python

   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))

.. image :: https://raw.githubusercontent.com/xzripper/flet_navigator/main/example.gif
   :width: 400

(Deprecated Example GIF).

`Documentation & GitHub. <https://github.com/xzripper/flet_navigator/blob/main/flet-navigator-docs.md>`_

-----------------------------------------------

   FletNavigator V2.7.5
