flutter_faded_list 0.0.1 copy "flutter_faded_list: ^0.0.1" to clipboard
flutter_faded_list: ^0.0.1 copied to clipboard

outdated

This package helps you display a list of your widgets with the blurred image in the first item.

Screenshot

Flutter Faded List plugin #

This package helps you display a list of your widgets with the blurred image in the first item.

Screenshot

Installation #

To use this plugin, add flutter_faded_list in your pubspec.yaml

dependencies:
  flutter_faded_list: ^0.0.1

Or install automatically using this command

$ flutter pub add flutter_faded_list

Simple to use #

import 'package:flutter_faded_list/flutter_faded_list.dart';

...
               FadedHorizontalList(
                  blankSpaceWidth: 200,
                  bodyColor: const Color(0xffAD4516),
                  imageWidget: Image.network("https://i.picsum.photos/id/478/536/354.jpg?hmac=adxYyHX8WcCfHkk07quT2s92fbC7vY2QttaeBztwxgI"),
                  children: [
                    for (var i = 0; i < 10; ++i)
                      const Text("  Hello World!  ")
                  ],
                ),
...

And bonus widget 🎉 #

import 'package:flutter_faded_list/flutter_faded_list.dart';

...
11
likes
0
pub points
0%
popularity

Publisher

verified publisherea2.dev

This package helps you display a list of your widgets with the blurred image in the first item.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_faded_list