Flutter Web and Slivers

Aseem Wangoo
CodeChai
Published in
5 min readAug 1, 2020

--

Using slivers in flutter web!

How to use slivers in Flutter Web? Hmm…

All in one Flutter resource: https://flatteredwithflutter.com/flutter-web-and-slivers/

Begin…

View the demo here

Website: https://fir-signin-4477d.firebaseapp.com/#/

We will cover briefly about

  1. Slivers
Flutter Web and Slivers

What are Slivers?

As per the official doc:

A sliver is a portion of a scrollable area. You can use slivers to achieve custom scrolling effects.

You have possibly the entire control for implementing a scrollable area while using them. Because slivers can lazily build, they are particularly useful for scrolling through a large number of children.

One of the best articles on Slivers, here.

How to use Slivers?

Just as you use, let’s say, SingleChildScrollView for implementing a normal scrolling…

--

--