fluttercommunity / fluttercommunity/chewie
How can I hide options on tap ?
Open
- Dominant language
- Dart
- Stars
- 2.1k
- Forks
- 1.1k
- Avg merge
- 6d 8h
- Merged PRs (30d)
- 6
Description
Hi
I have created download option in chewie and I want to close option's window after tap on download . Anyone can help me ?
thanks
```
void _createChewieController() {
_chewieController = ChewieController(
videoPlayerController: _videoPlayerController,
autoPlay: true,
additionalOptions: (context) {
return [
OptionItem(
onTap: () async {},
iconData: Icons.download,
title: 'Download',
),
];
},
);
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.