-
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.04 KB
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 1.04 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-nested-outlet-views"
version = "1.0.0"
description = "Nested routes with outlet layout wrapping child routes in a shared View with back navigation."
requires-python = ">=3.10"
keywords = ["router", "nested", "outlet", "views", "manage_views"]
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 — shared layout with outlet"
docs_intro = "A layout route with `outlet=True` wraps child routes in a shared [View](../controls/view.md). Leaf components return regular controls; the layout provides the View."
controls = ["View", "AppBar", "Column", "Container", "Button", "Text", "Router", "Route"]
layout_pattern = "page-navigation"
complexity = "intermediate"
features = ["nested routes", "outlet", "manage_views", "view stack", "back navigation"]
[tool.flet]
org = "dev.flet"
company = "Flet"
copyright = "Copyright (C) 2023-2026 by Flet"