Skip to content

Commit d72cfa5

Browse files
InesaFitsnerclaude
andauthored
Renamed titles of basic examples (#6535)
* docs(examples): remove redundant "Basic" prefix from example titles Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(examples): rename bare "Basic" example titles to control names Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(examples): replace numbered example titles with descriptive names Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(examples): remove "Basic" prefix/suffix from remaining example titles Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent bd0ca05 commit d72cfa5

217 files changed

Lines changed: 259 additions & 259 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

sdk/python/examples/apps/declarative/use_dialog_basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Declarative", "Getting Started/Declarative"]
1515

1616
[tool.flet.metadata]
17-
title = "Use dialog basic"
17+
title = "Use dialog"
1818
controls = ["Column", "Text", "Button", "TextButton", "AlertDialog"]
1919
layout_pattern = "inline-actions"
2020
complexity = "basic"

sdk/python/examples/apps/greeter/basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Getting Started"]
1515

1616
[tool.flet.metadata]
17-
title = "Basic greeter"
17+
title = "Greeter"
1818
controls = ["SafeArea", "Column", "TextField", "Button", "Text"]
1919
layout_pattern = "form"
2020
complexity = "basic"

sdk/python/examples/apps/router/basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Navigation/Router"]
1515

1616
[tool.flet.metadata]
17-
title = "Basic routing"
17+
title = "Routing"
1818
controls = ["SafeArea", "Column", "Row", "Button", "Text", "Router", "Route"]
1919
layout_pattern = "page-navigation"
2020
complexity = "basic"

sdk/python/examples/apps/templates/basic_counter/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dev = [
1818
]
1919

2020
[tool.flet.metadata]
21-
title = "Basic Counter"
21+
title = "Counter"
2222

2323
[tool.flet.gallery]
2424
categories = ["Getting Started"]

sdk/python/examples/apps/timer/basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Cookbook"]
1515

1616
[tool.flet.metadata]
17-
title = "Basic timer"
17+
title = "Timer"
1818
controls = ["SafeArea", "Column", "Row", "Text", "FilledButton", "TextButton"]
1919
layout_pattern = "center-stage"
2020
complexity = "basic"

sdk/python/examples/controls/core/container/animate_1/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Layout/Container"]
1515

1616
[tool.flet.metadata]
17-
title = "Animate 1"
17+
title = "Animate size and color"
1818
controls = ["SafeArea", "Column", "Container", "Button"]
1919
layout_pattern = "inline-actions"
2020
complexity = "basic"

sdk/python/examples/controls/core/container/animate_2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Layout/Container"]
1515

1616
[tool.flet.metadata]
17-
title = "Animate 2"
17+
title = "Animate gradient and shape"
1818
controls = ["SafeArea", "Column", "Container", "Button", "Text"]
1919
layout_pattern = "inline-actions"
2020
complexity = "basic"

sdk/python/examples/controls/core/container/animate_3/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Layout/Container"]
1515

1616
[tool.flet.metadata]
17-
title = "Animate 3"
17+
title = "Animated slide-in menu"
1818
controls = ["SafeArea", "Button", "Container", "Column", "Row", "IconButton", "ListTile"]
1919
layout_pattern = "overlay"
2020
complexity = "basic"

sdk/python/examples/controls/core/hero/basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Navigation/Hero"]
1515

1616
[tool.flet.metadata]
17-
title = "Basic"
17+
title = "Hero"
1818
controls = ["View", "SafeArea", "Container", "Column", "GestureDetector", "Hero", "AppBar", "Button", "Text", "Icon"]
1919
layout_pattern = "list-detail"
2020
complexity = "basic"

sdk/python/examples/controls/core/icon/basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dev = ["flet-cli", "flet-desktop", "flet-web"]
1414
categories = ["Displays/Icon"]
1515

1616
[tool.flet.metadata]
17-
title = "Basic"
17+
title = "Icon"
1818
controls = ["SafeArea", "Column", "Row", "Icon"]
1919
layout_pattern = "single-panel"
2020
complexity = "basic"

0 commit comments

Comments
 (0)