media_collection_previewer 0.0.1-dev.3 copy "media_collection_previewer: ^0.0.1-dev.3" to clipboard
media_collection_previewer: ^0.0.1-dev.3 copied to clipboard

A versatile and user-friendly Flutter package for efficiently previewing and displaying media collections, such as images, audios and videos, with interactive features.

The media_collection_previewer is a versatile Flutter package designed to simplify the way you preview various media files, including images, audio, and video, within your Flutter applications. This package enables developers to open and interact with a comprehensive viewer for media files by simply clicking on them, thereby enhancing the user experience and the overall quality of your application.

Preview

Note: This package is still under development and is subject to change.

Features #

  • Supports multiple file formats: Effortlessly preview image, video, and audio files all in one place.
  • Supported image formats: JPEG, PNG, GIF.
  • Supported video formats: MP4, MOV.
  • Supported audio formats: MP3, WAV.
  • Supports media playback from local assets, and remote URLs.

Getting started #

To use this package, add media_collection_previewer as a dependency in your pubspec.yaml file.

Installation #

In your pubspec.yaml file within your Flutter Project add media_collection_previewer under dependencies:

dependencies:
  media_collection_previewer: <latest_version>

Using it #

  • Import the package and create a list of media files to preview.
import 'package:media_collection_previewer/media_collection_previewer.dart';

List<Media> medias = [
  Media(
    id: 1,
    type: MediaType.image,
    path: imagePath,
  ),
  Media(
    id: 2,
    type: MediaType.video,
    url: url,
    thumbnailUrl: thumbnailUrl,
  ),
  Media(
    id: 3,
    type: MediaType.audio,
    path: audioPath,
  ),
];
  • Create a MediaCollection widget and pass the list of media files to it.

final widget = MediaCollection(medias: medias);

This will create a previewer which shows your media files and allows them to be opened and viewed on click.

Additional information #

You can check out the example directory for a sample application using this package.

License #

web_video_player is licensed under the New BSD License check the License for more details.

6
likes
115
pub points
48%
popularity

Publisher

verified publishersaedk.dev

A versatile and user-friendly Flutter package for efficiently previewing and displaying media collections, such as images, audios and videos, with interactive features.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (LICENSE)

Dependencies

audio_session, cached_network_image, collection, equatable, flutter, just_audio, rxdart, syncfusion_flutter_core, syncfusion_flutter_sliders, video_player, web_video_player

More

Packages that depend on media_collection_previewer