fix popup not scrull issue

This commit is contained in:
2025-11-21 09:49:51 +02:00
parent e9c3997553
commit 154bce61c8
3 changed files with 5 additions and 2 deletions

View File

@@ -122,7 +122,8 @@ class ClientsPage:
self.region_county, self.region_county,
self.country, self.country,
], ],
width=600 width=600,
scroll=ft.ScrollMode.ALWAYS
), ),
actions=[ actions=[
ft.TextButton("Cancel", on_click=self.on_cancel_btn_click), ft.TextButton("Cancel", on_click=self.on_cancel_btn_click),

View File

@@ -696,6 +696,7 @@ class ReportsPage:
ft.Row( ft.Row(
[ [
ft.Text("Reports", size=24, weight=ft.FontWeight.BOLD), ft.Text("Reports", size=24, weight=ft.FontWeight.BOLD),
self.total,
ft.Row( ft.Row(
[ [
ft.Button( ft.Button(

View File

@@ -151,7 +151,8 @@ class TransportersPage:
self.region_county, self.region_county,
self.country, self.country,
], ],
width=600 width=600,
scroll=ft.ScrollMode.ALWAYS
), ),
actions=[ actions=[
ft.TextButton("Cancel", on_click=lambda e: self.page.close(self.dialog)), ft.TextButton("Cancel", on_click=lambda e: self.page.close(self.dialog)),