no_glow_scroll 0.0.2 copy "no_glow_scroll: ^0.0.2" to clipboard
no_glow_scroll: ^0.0.2 copied to clipboard

This widget will remove glow in scrollables like listview, singlechildscrollview etc while overscrolling.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:no_glow_scroll/no_glow_scroll.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: NoGlowScroll(
          child: ListView.builder(
        itemCount: 20,
        itemBuilder: (context, index) {
          return ListTile(
            title: Text("Item ${index + 1}"),
          );
        },
      )),
    );
  }
}
3
likes
80
pub points
14%
popularity

Publisher

unverified uploader

This widget will remove glow in scrollables like listview, singlechildscrollview etc while overscrolling.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on no_glow_scroll