scroll_glow_color 0.1.2 copy "scroll_glow_color: ^0.1.2" to clipboard
scroll_glow_color: ^0.1.2 copied to clipboard

Change color of glow effect of scrollable widgets or remove the glow effect

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:scroll_glow_color/widget/scroll_glow_color.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'ScrollGlowColor Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: SafeArea(
          child: Scaffold(
              body: ScrollGlowColor(
                  // Use ScrollGlowColor as parent of "Scrollables" widgets
                  color: Color(
                      0xFFB900A5), // use a custom color instead default accentColor theme color
                  hideGlow: false, // default is false
                  child: ListView.builder(
                    itemCount: 50,
                    itemBuilder: (context, i) {
                      return ListTile(
                        title: Text(' Tile ${i + 1}'),
                      );
                    },
                  ))),
        ));
  }
}
6
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Change color of glow effect of scrollable widgets or remove the glow effect

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on scroll_glow_color