RemoveScrollGlow constructor

const RemoveScrollGlow({
  1. Key? key,
  2. required Widget child,
})

Eliminate the Splash Effect or Glow Effect when reaching the limit of a PageView, ScrollView, ListView, etc.

Implementation

const RemoveScrollGlow({Key? key, required this.child}) : super(key: key);