Answers for "change android scroll end color"

1

change android scroll end color

Wrap your ListView inside a GlowingOverscrollIndicator

ScrollConfiguration(
            behavior: ScrollBehavior(),
            child: GlowingOverscrollIndicator(
              axisDirection: AxisDirection.down,
              color: Colors.yellow,
              child: ListView.builder(
                physics: ClampingScrollPhysics(),
                itemCount: 15,
                itemBuilder: (context, index) {
                  return ListTile(
                    title: Text("testing :$index"),
                  );
                },
              ),
            ),
          ),
Posted by: Guest on February-07-2022

Code answers related to "change android scroll end color"

Browse Popular Code Answers by Language