-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how can I set fixed trim slider for min and max duration of length. Also trim slider can not move forward or backward #42
Comments
You can check the example to set up a max duration @override
void initState() {
_controller = VideoEditorController.file(widget.file,
maxDuration: Duration(seconds: 30))
..initialize().then((_) => setState(() {}));
super.initState();
} min duration is however not supported yet |
Could you add a feature where minDuration could be set... |
Currently I am displaying a message to trim for 15 seconds... |
after upgrading to flutter v3 I am getting some warnings Warning: Operand of null-aware operation '!' has type 'WidgetsBinding' which excludes null.
it would be helpful if you could address this ASAP |
@GelidGeorge V1.4.2 is available with flutter 3 update to remove the warnings I probably won't have time to work on a new feature in the next couple of weeks. But If you really need it you can submit a PR that I will be happy to review |
|
how can I set fixed trim slider for min and max duration of length.
Also trim slider can not move forward or backward
The text was updated successfully, but these errors were encountered: