flutter_media_picker/example/lib/media_picker.dart

139 lines
4.8 KiB
Dart
Raw Normal View History

2022-11-01 08:23:06 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
2022-10-25 14:20:18 +02:00
import 'package:example/media_picker_check.dart';
2023-11-21 11:19:17 +01:00
import 'package:example/widgets/icon_button_with_text.dart';
2022-10-25 14:20:18 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_media_picker/flutter_media_picker.dart';
class MediaPickerExample extends StatefulWidget {
const MediaPickerExample({required this.callback, Key? key})
: super(key: key);
2022-10-25 14:20:18 +02:00
final Function callback;
@override
State<StatefulWidget> createState() => _MediaPickerExampleState();
2022-10-25 14:20:18 +02:00
}
class _MediaPickerExampleState extends State<MediaPickerExample> {
2022-10-25 14:20:18 +02:00
@override
Widget build(BuildContext context) {
var mediaService = MediaPickerFileService();
2022-10-25 14:20:18 +02:00
return Wrap(
children: [
Container(
width: MediaQuery.of(context).size.width,
decoration: const BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(15),
topRight: Radius.circular(15),
),
),
child: Column(
children: [
const SizedBox(
height: 8,
),
Container(
width: 70,
height: 5,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(100),
color: const Color(0xFF000000).withOpacity(0.50),
),
),
const SizedBox(
height: 14,
),
const Text(
2022-12-22 13:57:57 +01:00
'Create/Pick',
2022-10-25 14:20:18 +02:00
style: TextStyle(
fontWeight: FontWeight.w900,
fontSize: 20,
),
),
const SizedBox(
height: 15,
),
MediaPicker(
2023-11-21 11:19:17 +01:00
// horizontalSpacing: 20,
loadingIconColor: Theme.of(context).colorScheme.secondary,
2023-11-21 11:19:17 +01:00
indiviualWidgetWidth: MediaQuery.of(context).size.width / 3,
2022-10-25 14:20:18 +02:00
mediaPickerInputs: [
MediaPickerInputPhoto(
2022-12-23 15:10:01 +01:00
label: 'Make photo',
2023-11-21 11:19:17 +01:00
widget: const IconButtonWithText(
icon: Icons.video_camera_front,
iconText: "Make photo Make photo",
iconSize: 48,
),
2022-10-25 14:20:18 +02:00
pickFile: mediaService.pickImageFile,
checkPageSettings: {
2022-12-22 13:57:57 +01:00
'title': 'Share photo',
2022-10-25 14:20:18 +02:00
'width': 125.0,
'height': 200.0,
},
onComplete: (MediaResult result) {
Navigator.pop(context);
},
),
MediaPickerInputVideo(
2022-12-23 15:10:01 +01:00
label: 'Make video',
2023-11-21 11:19:17 +01:00
widget: const IconButtonWithText(
icon: Icons.video_camera_front,
iconText: "Make video",
iconSize: 48,
),
2022-10-25 14:20:18 +02:00
pickFile: mediaService.pickVideoFile,
videoPlayerFactory: MediaPickerVideoPlayerFactory(),
checkPageSettings: {
2022-12-22 13:57:57 +01:00
'title': 'Share video',
2022-10-25 14:20:18 +02:00
'width': 122.5,
'height': 200.0,
},
onComplete: (MediaResult result) {
Navigator.pop(context);
},
),
2023-11-21 11:19:17 +01:00
MediaPickerInputVideo(
label: 'Make video',
widget: const IconButtonWithText(
icon: Icons.video_camera_front,
iconText: "Make video",
iconSize: 48,
2022-10-25 14:20:18 +02:00
),
2023-11-21 11:19:17 +01:00
pickFile: mediaService.pickVideoFile,
videoPlayerFactory: MediaPickerVideoPlayerFactory(),
2022-12-22 11:15:08 +01:00
checkPageSettings: {
2023-11-21 11:19:17 +01:00
'title': 'Share video',
'width': 122.5,
2023-01-04 14:35:36 +01:00
'height': 200.0,
2022-12-22 13:57:57 +01:00
},
onComplete: (MediaResult result) {
Navigator.pop(context);
2022-12-22 11:15:08 +01:00
},
),
2022-10-25 14:20:18 +02:00
],
mediaCheckPage: (Widget displayResult,
Map<String, dynamic>? inputSettings,
Function onComplete) =>
MediaCheckPage(
cancel: widget.callback,
displayResult: displayResult,
inputSettings: inputSettings ?? {},
onComplete: onComplete,
),
),
const SizedBox(
height: 30,
),
],
),
),
],
);
}
}