StreamScrollViewEmptyWidget constructor

const StreamScrollViewEmptyWidget({
  1. Key? key,
  2. required Widget emptyIcon,
  3. required Widget emptyTitle,
  4. TextStyle? emptyTitleStyle,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
})

Creates a new instance of the StreamScrollViewEmptyWidget.

Implementation

const StreamScrollViewEmptyWidget({
  super.key,
  required this.emptyIcon,
  required this.emptyTitle,
  this.emptyTitleStyle,
  this.mainAxisSize = MainAxisSize.max,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.crossAxisAlignment = CrossAxisAlignment.center,
});