I want to create a component which has scrolling behaviour, but I am struggling.
The component will first have a header row containing dates. The left most cell in the header row will be immovable. Cells to the right will be a horizontally scrollable listview row (L.A).
Below this will be a larger area containing a vertically scrollable listview column (L.B) of name cards and a larger area containing a vertical listview of horizontal listviews of cards (L.C).
L.C will be scrollable horizontally and vertically.
When the user scrolls upward or downward, L.B and L.C will scroll upward or downward. When the user scrolls sideways, L.A and L.C will scroll sideways as one. The horizontal listviews in L.C must not scroll sideways individually.
The only advice I have found is to export the project and implement this feature in Dart. Is there another way in flutterflow?