Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

Tags: AllDotPy/FletX

Tags

v0.1.4-rc0

Toggle v0.1.4-rc0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
configs for v0.1.4-rc0

configs for v0.1.4-rc0

v0.1.4.b3

Toggle v0.1.4.b3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #131 from AllDotPy/v>=3.12_support

Configs for FletX 0.1.4.b3 deployment.

V0.1.4.b230

Toggle V0.1.4.b230's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #95 from AllDotPy/dev.fletxpage

Flix: `TypeError: Callable must be used as Callable[[arg, ...], result]` Error in FletXPage (#94)

V0.1.4.b2

Toggle V0.1.4.b2's commit message
FletX.Core.Page: add busy indicator utilities to the FletX Page

V0.1.4.b1

Toggle V0.1.4.b1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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(...)

    ...

V0.1.4.b0

Toggle V0.1.4.b0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
V0.1.4.b0 configs

V0.1.4.b0 configs

V0.1.4.a2

Toggle V0.1.4.a2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add default 404 template to project templates

fletx.cli: Add default 404 template to project templates.

V0.1.4.a1

Toggle V0.1.4.a1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
V0.1.4.a1 setup. (#74)

v0.1.4.a0

Toggle v0.1.4.a0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v0.1.1-apha

Toggle v0.1.1-apha's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update Readme with new Added features and tasks.

Update Readme