TimelineOptions constructor

const TimelineOptions({
  1. TimelineTheme theme = const TimelineTheme(),
  2. TimelineTranslations translations = const TimelineTranslations(),
  3. ImagePickerConfig imagePickerConfig = const ImagePickerConfig(),
  4. ImagePickerTheme imagePickerTheme = const ImagePickerTheme(),
  5. double? timelinePostHeight,
  6. bool allowAllDeletion = false,
  7. bool sortCommentsAscending = true,
  8. bool? sortPostsAscending,
  9. bool doubleTapTolike = false,
  10. bool iconsWithValues = false,
  11. (Icon?, Icon?) likeAndDislikeIconsForDoubleTap = (Icon(Icons.favorite_rounded, color: Color(0xFFC3007A)), null),
  12. Widget itemInfoBuilder({
    1. required TimelinePost post,
    })?,
  13. DateFormat? dateFormat,
  14. DateFormat? timeFormat,
  15. ButtonBuilder? buttonBuilder,
  16. TextInputBuilder? textInputBuilder,
  17. Widget dividerBuilder()?,
  18. UserAvatarBuilder? userAvatarBuilder,
  19. UserAvatarBuilder? anonymousAvatarBuilder,
  20. String nameBuilder(
    1. TimelinePosterUserModel?
    )?,
  21. EdgeInsets padding = const EdgeInsets.only(left: 12.0, top: 24.0, right: 12.0, bottom: 12.0),
  22. double iconSize = 26,
  23. double? postWidgetHeight,
  24. EdgeInsets postPadding = const EdgeInsets.symmetric(vertical: 12.0, horizontal: 12.0),
  25. FilterOptions filterOptions = const FilterOptions(),
  26. CategoriesOptions categoriesOptions = const CategoriesOptions(),
  27. bool requireImageForPost = false,
  28. int? minTitleLength,
  29. int? maxTitleLength,
  30. int? minContentLength,
  31. int? maxContentLength,
  32. Widget categorySelectorButtonBuilder(
    1. BuildContext context,
    2. dynamic onPressed(),
    3. String text
    )?,
  33. Widget postOverviewButtonBuilder(
    1. BuildContext context,
    2. dynamic onPressed(),
    3. String text
    )?,
  34. InputDecoration? titleInputDecoration,
  35. InputDecoration? contentInputDecoration,
})

Implementation

const TimelineOptions({
  this.theme = const TimelineTheme(),
  this.translations = const TimelineTranslations(),
  this.imagePickerConfig = const ImagePickerConfig(),
  this.imagePickerTheme = const ImagePickerTheme(),
  this.timelinePostHeight,
  this.allowAllDeletion = false,
  this.sortCommentsAscending = true,
  this.sortPostsAscending,
  this.doubleTapTolike = false,
  this.iconsWithValues = false,
  this.likeAndDislikeIconsForDoubleTap = const (
    Icon(
      Icons.favorite_rounded,
      color: Color(0xFFC3007A),
    ),
    null,
  ),
  this.itemInfoBuilder,
  this.dateFormat,
  this.timeFormat,
  this.buttonBuilder,
  this.textInputBuilder,
  this.dividerBuilder,
  this.userAvatarBuilder,
  this.anonymousAvatarBuilder,
  this.nameBuilder,
  this.padding =
      const EdgeInsets.only(left: 12.0, top: 24.0, right: 12.0, bottom: 12.0),
  this.iconSize = 26,
  this.postWidgetHeight,
  this.postPadding =
      const EdgeInsets.symmetric(vertical: 12.0, horizontal: 12.0),
  this.filterOptions = const FilterOptions(),
  this.categoriesOptions = const CategoriesOptions(),
  this.requireImageForPost = false,
  this.minTitleLength,
  this.maxTitleLength,
  this.minContentLength,
  this.maxContentLength,
  this.categorySelectorButtonBuilder,
  this.postOverviewButtonBuilder,
  this.titleInputDecoration,
  this.contentInputDecoration,
});