flutter_faded_list

Last updated:

0 purchases

flutter_faded_list Image
flutter_faded_list Images
Add to Cart

Description:

flutter faded list

Flutter Faded List plugin #
This package helps you display a list of your widgets with the blurred image in the first item.

Installation #
To use this plugin, add flutter_faded_list in your pubspec.yaml
dependencies:
flutter_faded_list: ^0.0.4
copied to clipboard
Or install automatically using this command
$ flutter pub add flutter_faded_list
copied to clipboard
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! ")),
],
),
...
copied to clipboard
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")),
...
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.