TimelineUserStoryConfiguration constructor
- required TimelineService service,
- required TimelineOptions optionsBuilder(
- BuildContext context
- String userId = 'test_user',
- dynamic homeOpenPageBuilder(
- BuildContext context,
- Widget child,
- FloatingActionButton? button
- dynamic postCreationOpenPageBuilder(
- BuildContext context,
- Widget child,
- IconButton? button
- dynamic postViewOpenPageBuilder(
- BuildContext context,
- Widget child,
- IconButton? button
- dynamic postOverviewOpenPageBuilder(
- BuildContext context,
- Widget child
- dynamic onPostTap(
- BuildContext context,
- TimelinePost post
- dynamic onUserTap(
- BuildContext context,
- String userId
- Widget onPostDelete(
- BuildContext context,
- TimelinePost post
- bool filterEnabled = false,
- Widget postWidgetBuilder(
- TimelinePost post
- bool afterPostCreationGoHome = false,
- bool enablePostOverviewScreen = true,
- dynamic categorySelectionOpenPageBuilder(
- BuildContext context,
- Widget child
Constructs a TimelineUserStoryConfiguration with the specified parameters.
service is the TimelineService responsible for fetching user story data.
optionsBuilder is a function that builds TimelineOptions based on the given BuildContext.
userId is the ID of the user associated with this user story configuration. Default is 'test_user'.
openPageBuilder
is a function that defines the behavior when a page
needs to be opened. This function should accept a BuildContext and a
child widget.
onPostTap is a callback function invoked when a timeline post is tapped. It should accept a BuildContext and the tapped post.
onUserTap is a callback function invoked when the user's profile is tapped. It should accept a BuildContext and the user ID of the tapped user.
onPostDelete is a callback function invoked when a post deletion is requested. It should accept a BuildContext and the post widget. This function can return a widget to be displayed after the post is deleted.
filterEnabled determines whether filtering functionality is enabled for this user story timeline. Default is false.
postWidgetBuilder is a function that builds a widget for a timeline post. It should accept a TimelinePost and return a widget representing that post.
Implementation
const TimelineUserStoryConfiguration({
required this.service,
required this.optionsBuilder,
this.userId = 'test_user',
this.homeOpenPageBuilder,
this.postCreationOpenPageBuilder,
this.postViewOpenPageBuilder,
this.postOverviewOpenPageBuilder,
this.onPostTap,
this.onUserTap,
this.onPostDelete,
this.filterEnabled = false,
this.postWidgetBuilder,
this.afterPostCreationGoHome = false,
this.enablePostOverviewScreen = true,
this.categorySelectionOpenPageBuilder,
});