-
Notifications
You must be signed in to change notification settings - Fork 655
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[project]
name = "router-recursive-routes"
version = "1.0.0"
description = "Recursive routes (recursive=True) for tree-shaped URLs of unbounded depth. One View per consumed segment in the navigation stack."
requires-python = ">=3.10"
keywords = ["router", "recursive", "tree", "nested", "unbounded"]
authors = [{ name = "Flet team", email = "hello@flet.dev" }]
dependencies = ["flet"]
[dependency-groups]
dev = ["flet-cli", "flet-desktop", "flet-web"]
[tool.flet.gallery]
categories = ["Navigation/Router"]
[tool.flet.metadata]
title = "Recursive routes"
docs_intro = "A route marked `recursive=True` can match itself as its own descendant — one View is emitted per consumed URL segment. Use this for tree-shaped URLs with unbounded depth (e.g. a file browser at `/folder/a/b/c`)."
controls = ["SafeArea", "Column", "Button", "Text", "TextField", "AppBar", "View", "Router", "Route"]
layout_pattern = "page-navigation"
complexity = "intermediate"
features = ["recursive routes", "use_view_path", "manage_views", "tree URLs"]
[tool.flet]
org = "dev.flet"
company = "Flet"
copyright = "Copyright (C) 2023-2026 by Flet"