PlayStoreShimmer constructor

const PlayStoreShimmer({
  1. Key? key,
  2. bool isDarkMode = false,
  3. bool isPurplishMode = false,
  4. AlignmentGeometry beginAlign = Alignment.topLeft,
  5. AlignmentGeometry endAlign = Alignment.bottomRight,
  6. EdgeInsetsGeometry padding = const EdgeInsets.all(16.0),
  7. EdgeInsetsGeometry margin = const EdgeInsets.all(16.0),
  8. bool hasCustomColors = false,
  9. List<Color> colors = defaultColors,
  10. bool hasBottomFirstLine = true,
  11. bool hasBottomSecondLine = true,
  12. ScrollPhysics physics = const BouncingScrollPhysics(),
  13. Color bgColor = Colors.transparent,
})

Implementation

const PlayStoreShimmer(
    {Key? key,
    this.isDarkMode = false,
    this.isPurplishMode = false,
    this.beginAlign = Alignment.topLeft,
    this.endAlign = Alignment.bottomRight,
    this.padding = const EdgeInsets.all(16.0),
    this.margin = const EdgeInsets.all(16.0),
    this.hasCustomColors = false,
    this.colors = defaultColors,
    this.hasBottomFirstLine = true,
    this.hasBottomSecondLine = true,
    this.physics = const BouncingScrollPhysics(),
    this.bgColor = Colors.transparent})
    : super(key: key);