0

I want to achieve a design similar to the below image. I have used SliverList with CustomScrollView. Now, How can I add a title to the SliverList?

enter image description here

There are multiple horizontal and vertical scroll views therefore I am using CustomScrollView to optimize the performance.

Ranjit Shrestha
  • 622
  • 6
  • 24

1 Answers1

1

try to use SliverToBoxAdapter between SliverList:

SliverToBoxAdapter(
  child: Text('Covid info'),
)
Jim
  • 6,928
  • 1
  • 7
  • 18
  • I had the same thought. But according to flutter documentation, using multiple SliverToBoxAdapter, are not more efficient. You can see [here](https://api.flutter.dev/flutter/widgets/SliverToBoxAdapter-class.html) – Ranjit Shrestha Dec 03 '21 at 05:54
  • I think you misunderstood what that means, it means do not use "multiple SliverToBoxAdapter" as "SliverList". it is fine to use it as title of SliverList – Jim Dec 03 '21 at 05:59
  • Got it. Thank you. – Ranjit Shrestha Dec 03 '21 at 06:08