Skip to content

GridView

A scrollable, 2D array of controls.

It is very effective for large lists (thousands of items). Prefer it over wrapping Columns or Rows for smooth scrolling.

Inherits: LayoutControl, ScrollableControl, AdaptiveControl

Properties

Examples#

Live example

import flet as ft


def main(page: ft.Page):
    page.title = "GridView Example"
    page.theme_mode = ft.ThemeMode.DARK
    page.padding = 50

    page.add(
        ft.GridView(
            expand=1,
            runs_count=5,
            max_extent=150,
            child_aspect_ratio=1.0,
            spacing=5,
            run_spacing=5,
            controls=[
                ft.Image(
                    src=f"https://picsum.photos/150/150?{i}",
                    fit=ft.BoxFit.NONE,
                    repeat=ft.ImageRepeat.NO_REPEAT,
                    border_radius=ft.BorderRadius.all(10),
                )
                for i in range(0, 60)
            ],
        )
    )


ft.run(main)

photo-gallery

Properties#

build_controls_on_demand #

build_controls_on_demand: bool = True

TBD

cache_extent #

cache_extent: Number | None = None

Items that fall in the cache area (area before or after the visible area that are about to become visible when the user scrolls) are laid out even though they are not (yet) visible on screen.

The cacheExtent describes how many pixels the cache area extends before the leading edge and after the trailing edge of the viewport.

The total extent, which the viewport will try to cover with controls, is cache_extent before the leading edge + extent of the main axis + cache_extent after the trailing edge.

child_aspect_ratio #

child_aspect_ratio: Number = 1.0

The ratio of the cross-axis to the main-axis extent of each child.

clip_behavior #

clip_behavior: ClipBehavior | None = None

The content will be clipped (or not) according to this option.

controls #

controls: list[Control] = field(default_factory=list)

A list of controls to display inside grid.

horizontal #

horizontal: bool = False

Whether to layout the grid items horizontally.

max_extent #

max_extent: int | None = None

The maximum width or height of the grid item.

padding #

padding: PaddingValue | None = None

The amount of space by which to inset the children.

reverse #

reverse: bool = False

Whether the scroll view scrolls in the reading direction.

For example, if the reading direction is left-to-right and horizontal is True, then the scroll view scrolls from left to right when reverse is False and from right to left when reverse is True.

Similarly, if horizontal is False, then the scroll view scrolls from top to bottom when reverse is False and from bottom to top when reverse is True.

run_spacing #

run_spacing: Number = 10

The number of logical pixels between each child along the cross axis.

runs_count #

runs_count: int = 1

The number of children in the cross axis.

semantic_child_count #

semantic_child_count: int | None = None

The number of children that will contribute semantic information.

spacing #

spacing: Number = 10

The number of logical pixels between each child along the main axis.