TimelineOptions constructor
const
TimelineOptions({ - TimelineTheme theme = const TimelineTheme(),
- TimelineTranslations translations = const TimelineTranslations(),
- ImagePickerConfig imagePickerConfig = const ImagePickerConfig(),
- ImagePickerTheme imagePickerTheme = const ImagePickerTheme(),
- double? timelinePostHeight,
- bool allowAllDeletion = false,
- bool? sortPostsAscending,
- bool doubleTapTolike = false,
- bool iconsWithValues = false,
- (Icon?, Icon?) likeAndDislikeIconsForDoubleTap = (Icon(Icons.favorite_rounded, color: Color(0xFFC3007A)), null),
- Widget itemInfoBuilder({
- required TimelinePost post,
})?,
- DateFormat? dateFormat,
- DateFormat? timeFormat,
- ButtonBuilder? buttonBuilder,
- TextInputBuilder? textInputBuilder,
- Widget dividerBuilder()?,
- UserAvatarBuilder? userAvatarBuilder,
- UserAvatarBuilder? anonymousAvatarBuilder,
- String nameBuilder(
- TimelinePosterUserModel?
)?,
- EdgeInsets padding = const EdgeInsets.only(left: 12.0, top: 24.0, right: 12.0, bottom: 12.0),
- double iconSize = 26,
- double? postWidgetHeight,
- EdgeInsets postPadding = const EdgeInsets.symmetric(vertical: 12.0, horizontal: 12.0),
- FilterOptions filterOptions = const FilterOptions(),
- CategoriesOptions categoriesOptions = const CategoriesOptions(),
- bool requireImageForPost = false,
- int? minTitleLength,
- int? maxTitleLength,
- int? minContentLength,
- int? maxContentLength,
- Widget categorySelectorButtonBuilder(
- BuildContext context,
- dynamic onPressed(),
- String text
)?,
- Widget postOverviewButtonBuilder(
- BuildContext context,
- dynamic onPressed(),
- String text
)?,
- InputDecoration? titleInputDecoration,
- 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,
});