LeGoffMael / video_editor

A flutter package for editing video written in pure Dart with fully customizable UI. Supports crop, trim, rotation and cover selection.

Home Page:https://pub.dev/packages/video_editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to automatically play preview video

jijkbird opened this issue · comments

How to automatically play preview video

commented

You can do it after controller initialization

_controller.initialize().then((_) {
  _controller.video.play();
  setState(() {});
});