color_filter 0.1.4 copy "color_filter: ^0.1.4" to clipboard
color_filter: ^0.1.4 copied to clipboard

Option to rotate, flash, mode, filters, timer, exposure, effects, music, gallery for image clicked in story.

color_filter #

Option to rotate, flash, mode, filters, timer, exposure, effects, music, gallery for image clicked in story.

Getting Started #

 
 
Add StoryFilter Class With Widget
 @override
Widget build(BuildContext context) {
GlobalKey<StoryFilterState> globalKey = GlobalKey(); return StoryFilter(
{Key:globalKey,// pass global key
this.controllerWidget,// Capture Button Widgets
this.imageEditOptionWidget,// Image Filter Widgets
this.videoEditOptionWidget, // Video Filter Widget
});
Video Capturing:
 
GlobalKey<StoryFilterState> globalKey = GlobalKey();
globalKey.currentState.startVideo();
globalKey.currentState.stopVideo();
globalKey.currentState.pauseVideo();
globalKey.currentState.resumeVideo();
Switch Camera:
GlobalKey<StoryFilterState> globalKey = GlobalKey();
globalKey.currentState.changCamera();
Set Gallery Image:
GlobalKey<StoryFilterState> globalKey = GlobalKey();
globalKey.currentState.setGalleryImage(imageFile.path);
Video Tools:
  • Boomerang
  • Reverse
  • FastForward
  • SlowMotion
  • Music
  • Filter
Applying video tools using below function:
  static const typeBoomRange = 1;
static const typeReverse = 2;
static const typeFastForward = 3;
static const typeSlowMotion = 4;
static const typeMergeMusic = 5;
static const typeFilter = 6;//Function

videoEditing(StoryFilter.typeBoomRange)

Image tools:
  • Rotation
9
likes
20
pub points
11%
popularity

Publisher

unverified uploader

Option to rotate, flash, mode, filters, timer, exposure, effects, music, gallery for image clicked in story.

Homepage
Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

camera, flutter, flutter_ffmpeg, flutter_lantern, path_provider, thumbnails, toast, video_player

More

Packages that depend on color_filter