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

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.4

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 Padding(
                      padding: const EdgeInsets.all(70.0),
                      child:Text("  Hello World!  ")),
                  ],
                ),
...

And bonus widget 🎉 #

Use this widget in FadedHorizontalList for headerWidget property .

import 'package:flutter_faded_list/flutter_faded_list.dart';

FadedHeaderWidget(title: Text("Sample Header Title")),
...
9
likes
140
pub points
9%
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

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_faded_list