-
Notifications
You must be signed in to change notification settings - Fork 655
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 1.09 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
28
29
30
31
32
[project]
name = "chip-assist-chips"
version = "1.0.0"
description = "Assist chips with click actions and dynamic state updates."
requires-python = ">=3.10"
keywords = ["chip", "assist chip", "material", "input", "actions", "async", "url launch"]
authors = [{ name = "Flet team", email = "hello@flet.dev" }]
dependencies = ["flet"]
[dependency-groups]
dev = ["flet-cli", "flet-desktop", "flet-web"]
[tool.flet.gallery]
categories = ["Input/Chip"]
[tool.flet.metadata]
title = "Assist chips"
docs_intro = """
Assist chips are chips with [`leading`](chip.md#flet.Chip.leading) icon and [`on_click`](chip.md#flet.Chip.on_click) event specified.
They represent smart or automated actions that appear dynamically and contextually in a UI.
An alternative to assist chips are buttons, which should appear persistently and consistently."""
controls = ["SafeArea", "Row", "Chip", "Icon", "Text"]
layout_pattern = "inline-actions"
complexity = "basic"
features = ["click handling", "async url launch", "dynamic chip state"]
[tool.flet]
org = "dev.flet"
company = "Flet"
copyright = "Copyright (C) 2023-2026 by Flet"