How to read images from mobile library - flutter

I am looking for flutter package that can help in reading images in mobile library. Any idea if such a package exists
I appreciate your help.

A Flutter plugin for iOS and Android for picking images from the image library, and taking new pictures with the camera.
$ flutter pub add image_picker

Related

how solve flutter with just_audio package problem

i used Just_audio pakage for load audio assets for windows app but when I turn the app show me
iam use this way to load assets
if you have solution for this problem or other ways to load assets or another package for windows flutter please tell me

How to load and show a video file flutter web

I want to show a video in my website developed using flutter web, what the solution for this problem?
Note: Using video_player package doesn't work for file. VideoPlayerController.file() not implemented for flutter web.
Thx for help!

How to play DRM video file in Flutter for Android & iOS app

I am developing a flutter app, Where I need to play a DRM video in a flutter for the android app and iOS app. Is there any plugin or player available in flutter? or any example? or any other way?
Available pub: https://pub.dev/packages/drm_video
The above pub is not properly updated.
Please help me. thank you.
There is Better Player which has drm configuration, check it.

How to take screenshot using flutter agora plugin?

In current agora Flutter SDK, I can't able to take screenshot. Please guide is there is any API or workaround to take a screenshot using the agora plugin
I tried to take a screenshot using the screenshot plugin(https://pub.dev/packages/screenshot#-installing-tab). But it produces a blank screen image
Please guide to fix this
Agora Flutter SDK is using Surface View because of which you wont be able to take screenshot of the stream, as it will return with a black screen.
This is the workaround that I found for this: I used this package instead
to take the screenshot. I also have also written a sample code to illustrate agora flutter SDK and native_screenshot package. You can have a look here : https://github.com/Meherdeep/agora-videocall-demo
Note: This package is only supported for API version > 24

Is there a way to open other applications in flutter

I need to be able open other apps in my flutter application
In an application i am working on I need to be able to play videos however the video_player plugin in flutter only has play and pause options and there is chewie also however we don't have the option of pausing chewie with commands , so I am thinking of opening videos through other apps like vlc,MX players, etc. How do i open these apps in flutter.
Please take a look at the open_file plugin, it supports opening most of the file including videos.
Example usage:
Specify dependency in pubspec.yaml
dependencies:
open_file: ^1.1.1
then
import 'package:open_file/open_file.dart';
OpenFile.open(your_file_path);
Hope that helps!