You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Going to the next slide on tap on the image works fine. but when I try to go to the previous slide, it just resets the sliding duration of the current slider. And I tap it again, and it goes to the previous slide.
Is anyone else facing this issue?
My code:
StoryViewer(
key: UniqueKey(),
viewerController: controller,
customValues: Customizer(
sendIcon: Icons.send,
closeIcon: Icons.close,
replyPlaceholder: "Message",
),
hasReply: false,
trusted: true,
loop: false,
progressBorderRadius:
const BorderRadius.all(Radius.circular(12)),
progressRowPadding: const EdgeInsets.all(10),
progressHeight: 6,
backgroundColor: kGreyColor,
mediaAlignment: Alignment.center,
// auto go back if the aspect ratio is StoryRatio.r9_16
// ratio: StoryRatio.r4_3,
stories: storyItems,
userModel: UserModel(
username: widget.story.name,
profilePicture: NetworkImage(widget.story.profileImage),
),
onEachStoryLoadComplated: ({String? storyID}) {
print(storyID);
},
),
The text was updated successfully, but these errors were encountered:
I have a story view that has many slides.
Going to the next slide on tap on the image works fine. but when I try to go to the previous slide, it just resets the sliding duration of the current slider. And I tap it again, and it goes to the previous slide.
Is anyone else facing this issue?
My code:
The text was updated successfully, but these errors were encountered: