CopyPastor

Detecting plagiarism made easy.

Score: 0.8128356337547302; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2024-10-28
by Kalpesh Khandla

Original Post

Original - Posted on 2018-10-08
by diegoveloper



            
Present in both answers; Present only in the new answer; Present only in the old answer;

**1.** Wrap your ListView inside a `GlowingOverscrollIndicator`
**2.** Wrap your `GlowingOverscrollIndicator` inside a ScrollConfiguration with a new scroll behavior
Try with below code snippet.
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"), ); }, ), ), ),

Another option without using theme could be:
1- Wrap your ListView inside a `GlowingOverscrollIndicator`
2- Wrap your `GlowingOverscrollIndicator` inside a ScrollConfiguration with a new scroll behavior
Here you have:
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"), ); }, ), ), ),



        
Present in both answers; Present only in the new answer; Present only in the old answer;