How to Select Video from Camera and Gallery in Flutter? - GeeksforGeeks (2024)

import 'dart:io';

import 'package:flutter/material.dart';

import 'package:image_picker/image_picker.dart';

void main() {

runApp(const MyApp());

}

class MyApp extends StatelessWidget {

const MyApp({super.key});

@override

Widget build(BuildContext context) {

return MaterialApp(

theme: ThemeData(primaryColor: Colors.green),

home: const VideoSelector(),

debugShowCheckedModeBanner: false,

);

}

}

class VideoSelector extends StatefulWidget {

const VideoSelector({super.key});

@override

State<VideoSelector> createState() => _VideoSelectorState();

}

class _VideoSelectorState extends State<VideoSelector> {

File? galleryFile;

final picker = ImagePicker();

@override

Widget build(BuildContext context) {

// display image selected from gallery

return Scaffold(

appBar: AppBar(

title: const Text('Gallery and Camera Access'),

backgroundColor: Colors.green,

actions: const [],

),

body: Builder(

builder: (BuildContext context) {

return Center(

child: Column(

mainAxisAlignment: MainAxisAlignment.center,

children: [

ElevatedButton(

style: ButtonStyle(

backgroundColor: MaterialStateProperty.all(Colors.green)),

child: const Text('Select video from Gallery and Camera'),

onPressed: () {

_showPicker(context: context);

},

),

const SizedBox(

height: 20,

),

SizedBox(

height: 200.0,

width: 300.0,

child: galleryFile == null

? const Center(child: Text('Sorry nothing selected!!'))

: Center(child: Text(galleryFile!.path)),

),

const Padding(

padding: EdgeInsets.symmetric(vertical: 18.0),

child: Text(

"GFG",

textScaleFactor: 3,

style: TextStyle(color: Colors.green),

),

)

],

),

);

},

),

);

}

void _showPicker({

required BuildContext context,

}) {

showModalBottomSheet(

context: context,

builder: (BuildContext context) {

return SafeArea(

child: Wrap(

children: <Widget>[

ListTile(

leading: const Icon(Icons.photo_library),

title: const Text('Gallery'),

onTap: () {

getVideo(ImageSource.gallery);

Navigator.of(context).pop();

},

),

ListTile(

leading: const Icon(Icons.photo_camera),

title: const Text('Camera'),

onTap: () {

getVideo(ImageSource.camera);

Navigator.of(context).pop();

},

),

],

),

);

},

);

}

Future getVideo(

ImageSource img,

) async {

final pickedFile = await picker.pickVideo(

source: img,

preferredCameraDevice: CameraDevice.front,

maxDuration: const Duration(minutes: 10));

XFile? xfilePick = pickedFile;

setState(

() {

if (xfilePick != null) {

galleryFile = File(pickedFile!.path);

} else {

ScaffoldMessenger.of(context).showSnackBar(// is this context <<<

const SnackBar(content: Text('Nothing is selected')));

}

},

);

}

}

How to Select Video from Camera and Gallery in Flutter? - GeeksforGeeks (2024)
Top Articles
How to raise a seed round and find seed stage investors
How to Upgrade Nonprofit Donors Using Suggested Donations
Ups Customer Center Locations
Cintas Pay Bill
Fat People Falling Gif
1970 Chevelle Ss For Sale Craigslist
Boggle Brain Busters Bonus Answers
What's Wrong with the Chevrolet Tahoe?
Category: Star Wars: Galaxy of Heroes | EA Forums
Steve Strange - From Punk To New Romantic
Decaying Brackenhide Blanket
Crime Scene Photos West Memphis Three
Learn How to Use X (formerly Twitter) in 15 Minutes or Less
City Of Spokane Code Enforcement
Miami Valley Hospital Central Scheduling
Saberhealth Time Track
Nj State Police Private Detective Unit
Gon Deer Forum
Me Cojo A Mama Borracha
Transfer and Pay with Wells Fargo Online®
Gayla Glenn Harris County Texas Update
Nurse Logic 2.0 Testing And Remediation Advanced Test
Chase Bank Pensacola Fl
Play Tetris Mind Bender
Rapv Springfield Ma
Manuela Qm Only
2011 Hyundai Sonata 2 4 Serpentine Belt Diagram
Netspend Ssi Deposit Dates For 2022 November
Firefly Festival Logan Iowa
Gopher Carts Pensacola Beach
Schooology Fcps
Salemhex ticket show3
Prévisions météo Paris à 15 jours - 1er site météo pour l'île-de-France
CARLY Thank You Notes
Usf Football Wiki
Daily Jail Count - Harrison County Sheriff's Office - Mississippi
Avance Primary Care Morrisville
Wsbtv Fish And Game Report
Bones And All Showtimes Near Johnstown Movieplex
What Is Kik and Why Do Teenagers Love It?
Tryst Houston Tx
Lacy Soto Mechanic
Isabella Duan Ahn Stanford
Sechrest Davis Funeral Home High Point Nc
9:00 A.m. Cdt
Crigslist Tucson
Grace Family Church Land O Lakes
Call2Recycle Sites At The Home Depot
Leslie's Pool Supply Redding California
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 6116

Rating: 5 / 5 (50 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.