I'm using the flet library to make a desktop app, I could make it scrollable vertically by using
lv = ft.ListView(expand=1, spacing=10, padding=20, auto_scroll=True, horizontal=True)
lv.controls.append(dt)
but it doesn't scroll horizontally at all. Moreover, when horizontal is set to true, it doesn't scroll vertically, so I have to remove it to at least scroll vertically
That's a sample:
Picture of software:
Code:
import flet as ft
def main(page: ft.Page):
dt = ft.DataTable(
columns=[
ft.DataColumn(ft.Text("First name")),
ft.DataColumn(ft.Text("Last name")),
ft.DataColumn(ft.Text("Age"), numeric=True),
ft.DataColumn(ft.Text("First name")),
....
],
rows=[
ft.DataRow(
cells=[
ft.DataCell(ft.Text("John")),
ft.DataCell(ft.Text("Smith")),
ft.DataCell(ft.Text("43")),
ft.DataCell(ft.Text("John")),
...
],
),
ft.DataRow(
cells=[
ft.DataCell(ft.Text("John")),
ft.DataCell(ft.Text("Smith")),
ft.DataCell(ft.Text("43")),
ft.DataCell(ft.Text("John")),
ft.DataCell(ft.Text("Smith")),
ft.DataCell(ft.Text("43")),
ft.DataCell(ft.Text("John")),
ft.DataCell(ft.Text("Smith")),
...
],
),
],
)
lv = ft.ListView(expand=1, spacing=10, padding=20, auto_scroll=True, horizontal=True)
lv.controls.append(dt)
page.add(
lv
)
ft.app(target=main)
This sample code shows how to enable vertical and horizontal scrolling of
datatable
inflet
python.This line in below sample code makes that happen.