DetailedList¶
An ordered list with an icon, heading, and text for each item.






Not supported
Not supported
Usage¶
The simplest way to create a DetailedList is to pass a list of dictionaries, with each dictionary containing three keys: icon, title, and subtitle:
import toga
table = toga.DetailedList(
data=[
{
"icon": toga.Icon("icons/arthur"),
"title": "Arthur Dent",
"subtitle": "Where's the tea?"
},
{
"icon": toga.Icon("icons/ford"),
"title": "Ford Prefect",
"subtitle": "Do you know where my towel is?"
},
{
"icon": toga.Icon("icons/tricia"),
"title": "Tricia McMillan",
"subtitle": "What planet are you from?"
},
]
)
If you want to customize the keys used in the dictionary, you can do this by providing an accessors argument to the DetailedList when it is constructed. accessors is a tuple containing the attributes that will be used to provide the icon, title, and subtitle, respectively:
import toga
table = toga.DetailedList(
accessors=("picture", "name", "quote"),
data=[
{
"picture": toga.Icon("icons/arthur"),
"name": "Arthur Dent",
"quote": "Where's the tea?"
},
{
"picture": toga.Icon("icons/ford"),
"name": "Ford Prefect",
"quote": "Do you know where my towel is?"
},
{
"picture": toga.Icon("icons/tricia"),
"name": "Tricia McMillan",
"quote": "What planet are you from?"
},
]
)
If the value provided by the title or subtitle accessor is None, or the accessor isn't defined, the missing_value will be displayed. Any other value will be converted into a string.
The icon accessor should return an Icon. If it returns None, or the accessor isn't defined, then no icon will be displayed, but space for the icon will remain in the layout.
Items in a DetailedList will respond to a primary and secondary action if the on_primary_action and on_secondary_action handlers are set:
- On Android, a long press displays a menu with the primary and secondary actions.
- On iOS, swiping left triggers the primary action, and swiping right triggers the secondary action.
- On GTK, a right click displays buttons for the primary and secondary actions.
- On macOS and Windows, a right click displays a context menu with the primary and secondary actions.
- On Qt, the primary and secondary actions are displayed as standalone buttons.
By default, the primary and secondary action will be labeled as "Delete" and "Action", respectively. These names can be overridden by providing a primary_action and secondary_action argument when constructing the DetailedList. Although the primary action is labeled "Delete" by default, the DetailedList will not perform any data deletion as part of the UI interaction. It is the responsibility of the application to implement any data deletion behavior as part of the on_primary_action handler.
The DetailedList as a whole will also respond to a refresh UI action if an on_refresh handler is set:
- On Android, iOS and macOS, pulling down at the top of the list triggers a refresh.
- On Qt, a button bar displays a refresh button.
- On GTK, a floating refresh button is displayed when scrolled to the top.
- On Windows, a right click displays a context menu with a refresh option.
Notes¶
- The iOS Human Interface Guidelines differentiate between "Normal" and "Destructive" actions on a row. Toga will interpret any action with a name of "Delete" or "Remove" as destructive, and will render the action appropriately.
- Using DetailedList on Android requires the AndroidX SwipeRefreshLayout widget in your project's Gradle dependencies. Ensure your app declares a dependency on
androidx.swiperefreshlayout:swiperefreshlayout:1.1.0or later.
Reference¶
toga.DetailedList
¶
DetailedList(
id: str | None = None,
style: StyleT | None = None,
data: ListSourceT | Iterable | None = None,
accessors: tuple[str, str, str] = ("title", "subtitle", "icon"),
missing_value: str = "",
primary_action: str | None = "Delete",
on_primary_action: OnPrimaryActionHandler | None = None,
secondary_action: str | None = "Action",
on_secondary_action: OnSecondaryActionHandler | None = None,
on_refresh: OnRefreshHandler | None = None,
on_select: OnSelectHandler | None = None,
**kwargs,
)
Bases: Widget
Create a new DetailedList widget.
| PARAMETER | DESCRIPTION |
|---|---|
id
|
The ID for the widget.
TYPE:
|
style
|
A style object. If no style is provided, a default style will be applied to the widget.
TYPE:
|
data
|
Initial
TYPE:
|
accessors
|
The accessors to use to retrieve the data for each item, in the form (title, subtitle, icon).
TYPE:
|
missing_value
|
The text that will be shown when a row doesn't provide a value for its title or subtitle.
TYPE:
|
on_select
|
Initial
TYPE:
|
primary_action
|
The name for the primary action.
TYPE:
|
on_primary_action
|
Initial
TYPE:
|
secondary_action
|
The name for the secondary action.
TYPE:
|
on_secondary_action
|
Initial
TYPE:
|
on_refresh
|
Initial
TYPE:
|
kwargs
|
Initial style properties.
DEFAULT:
|
accessors
property
¶
The accessors used to populate the list (read-only)
data
property
writable
¶
data: ListSourceT | ListSource
The data to display in the table.
When setting this property:
-
A
Sourcewill be used as-is. It must either be aListSource, or a custom class that provides the same methods. -
A value of None is turned into an empty ListSource.
-
Otherwise, the value must be an iterable, which is copied into a new ListSource. Items are converted as shown here.
enabled
property
writable
¶
enabled: Literal[True]
Is the widget currently enabled? i.e., can the user interact with the widget? DetailedList widgets cannot be disabled; this property will always return True; any attempt to modify it will be ignored.
missing_value
property
¶
missing_value: str
The text that will be shown when a row doesn't provide a value for its title or subtitle.
on_primary_action
property
writable
¶
on_primary_action: OnPrimaryActionHandler
The handler to invoke when the user performs the primary action on a row of the DetailedList.
The primary action is "swipe left" on platforms that use swipe interactions; other platforms may manifest this action in other ways (e.g, a context menu).
If no on_primary_action handler is provided, the primary action will be
disabled in the UI.
on_refresh
property
writable
¶
on_refresh: OnRefreshHandler
The callback function to invoke when the user performs a refresh action (usually "pull down") on the DetailedList.
If no on_refresh handler is provided, the refresh UI action will be
disabled.
on_secondary_action
property
writable
¶
on_secondary_action: OnSecondaryActionHandler
The handler to invoke when the user performs the secondary action on a row of the DetailedList.
The secondary action is "swipe right" on platforms that use swipe interactions; other platforms may manifest this action in other ways (e.g, a context menu).
If no on_secondary_action handler is provided, the secondary action will be
disabled in the UI.
on_select
property
writable
¶
on_select: OnSelectHandler
The callback function that is invoked when a row of the DetailedList is selected.
selection
property
¶
selection: Row | None
The current selection of the table.
Returns the selected Row object, or None if no row is currently selected.
scroll_to_bottom
¶
scroll_to_bottom() -> None
Scroll the view so that the bottom of the list (last row) is visible.
scroll_to_row
¶
scroll_to_row(row: int) -> None
Scroll the view so that the specified row index is visible.
| PARAMETER | DESCRIPTION |
|---|---|
row
|
The index of the row to make visible. Negative values refer to the nth last row (-1 is the last row, -2 second last, and so on).
TYPE:
|
scroll_to_top
¶
scroll_to_top() -> None
Scroll the view so that the top of the list (first row) is visible.
toga.widgets.detailedlist.OnPrimaryActionHandler
¶
Bases: Protocol
__call__
¶
__call__(widget: DetailedList, row: Any, **kwargs: Any) -> None
A handler to invoke for the primary action.
| PARAMETER | DESCRIPTION |
|---|---|
widget
|
The DetailedList that was invoked.
TYPE:
|
row
|
The current row for the detailed list.
TYPE:
|
kwargs
|
Ensures compatibility with arguments added in future versions.
TYPE:
|
toga.widgets.detailedlist.OnSecondaryActionHandler
¶
Bases: Protocol
__call__
¶
__call__(widget: DetailedList, row: Any, **kwargs: Any) -> None
A handler to invoke for the secondary action.
| PARAMETER | DESCRIPTION |
|---|---|
widget
|
The DetailedList that was invoked.
TYPE:
|
row
|
The current row for the detailed list.
TYPE:
|
kwargs
|
Ensures compatibility with arguments added in future versions.
TYPE:
|
toga.widgets.detailedlist.OnRefreshHandler
¶
Bases: Protocol
__call__
¶
__call__(widget: DetailedList, **kwargs: Any) -> None
A handler to invoke when the detailed list is refreshed.
| PARAMETER | DESCRIPTION |
|---|---|
widget
|
The DetailedList that was refreshed.
TYPE:
|
kwargs
|
Ensures compatibility with arguments added in future versions.
TYPE:
|
toga.widgets.detailedlist.OnSelectHandler
¶
Bases: Protocol
__call__
¶
__call__(widget: DetailedList, **kwargs: Any) -> None
A handler to invoke when the detailed list is selected.
| PARAMETER | DESCRIPTION |
|---|---|
widget
|
The DetailedList that was selected.
TYPE:
|
kwargs
|
Ensures compatibility with arguments added in future versions.
TYPE:
|