flutter_faded_list 0.0.1 flutter_faded_list: ^0.0.1 copied to clipboard
This package helps you display a list of your widgets with the blurred image in the first item.
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.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';
...