-
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) · 1023 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 1023 Bytes
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-nested-routes"
version = "1.0.0"
description = "Parent/child route hierarchy with dynamic segments for product detail views."
requires-python = ">=3.10"
keywords = ["router", "nested", "routes", "hierarchy", "params"]
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 = "Managed views — nested routes"
docs_intro = "Each route component returns a [View](../controls/view.md) with its own [AppBar](../controls/appbar.md). Navigating deeper pushes views onto the stack; swipe-back and AppBar back button pop them."
controls = ["SafeArea", "Column", "Row", "Button", "Text", "Router", "Route"]
layout_pattern = "page-navigation"
complexity = "basic"
features = ["nested routes", "dynamic segments", "use_route_params"]
[tool.flet]
org = "dev.flet"
company = "Flet"
copyright = "Copyright (C) 2023-2026 by Flet"