Build: Custom Scroll View Demo
This screen shows a scrollable list with a floating app bar and a grid below it using CustomScrollView.
Target UI
┌───────────────────────────────┐ │ Floating AppBar │ ├───────────────────────────────┤ │ List Item 1 │ │ List Item 2 │ │ List Item 3 │ │ ... │ │───────────────────────────────│ │ Grid Item 1 Grid Item 2 │ │ Grid Item 3 Grid Item 4 │ │ Grid Item 5 Grid Item 6 │ │ ... │ └───────────────────────────────┘
Use CustomScrollView as the main scrollable widget.
Add a SliverAppBar that floats and has a title 'CustomScrollView Demo'.
Add a SliverList with 5 list items labeled 'List Item 1' to 'List Item 5'.
Add a SliverGrid with 6 grid items labeled 'Grid Item 1' to 'Grid Item 6'.
Each list item and grid item should be a Container with some padding and a border.
The grid should have 2 columns.