[X] I have searched the opened issues and there are no duplicates
Describe the bug
I am using a Stack widget with a Row inside it. The Row is meant to scroll horizontally.
However, the scroll functionality does not work when I position the Row using the Positioned widget with
top and left properties.
If I remove the Positioned widget (i.e., without specifying top and left), the scroll works
as expected.
Duplicate Check
Describe the bug
I am using a
Stack
widget with aRow
inside it. TheRow
is meant to scroll horizontally. However, the scroll functionality does not work when I position theRow
using thePositioned
widget withtop
andleft
properties.If I remove the
Positioned
widget (i.e., without specifyingtop
andleft
), the scroll works as expected.Code sample
Code
```python self.places = ft.Row( top=315, left=25, spacing=19, scroll=ft.ScrollMode.ALWAYS, controls=[ Place( name_place=("Aîn Draham", "Jendouba"), loc_place="Jendouba, Tunisie", rate="4.8", place="3ain_drahom.jpg" ), Place( name_place=("Galite Islands", "Bizerte"), loc_place="Bizerte, Tunisie", rate="4.2", place="la-galite.jpg" ) ] ) ```To reproduce
Stack
widget.Row
widget inside it.Positioned
widget to set thetop
andleft
properties.Row
. The scroll will not work.Positioned
or its properties, and observe that the scroll works correctly.Expected behavior
The
Row
inside theStack
should scroll horizontally, even when positioned usingtop
andleft
.Screenshots / Videos
Captures
[Upload media here]Operating System
Windows
Operating system details
11
Flet version
last
Regression
No, it isn't
Suggestions
No response
Logs
Logs
```console [Paste your logs here] ```Additional details
No response