image_picker_web_totalxsoftware 1.0.0 copy "image_picker_web_totalxsoftware: ^1.0.0" to clipboard
image_picker_web_totalxsoftware: ^1.0.0 copied to clipboard

Platformweb

A Flutter web plugin for selecting and uploading images to Firebase Storage with support for single and multiple image selection, optimized upload options, and custom error handling.

ImagePickerWebTotalxsoftware - Flutter Web Plugin #

Launch Totalx

Developed by Totalx Software

ImagePickerWebTotalxsoftware is a Flutter web plugin for selecting images from the user's device and uploading them to Firebase Storage. The plugin offers multiple methods for selecting single or multiple images, as well as directly uploading them to Firebase.

Table of Contents #

Features #

  • Single Image Selection: Choose a single image from the device.
  • Multiple Image Selection: Select multiple images with size and count limits.
  • Firebase Upload: Upload selected images directly to Firebase Storage.
  • Error Handling: Custom error messages for oversized images and upload issues.

Prerequisites #

  1. Initialize Firebase in your Flutter web project. Refer to the Firebase setup guide.
  2. Add image_picker_web_totalxsoftware to your project’s pubspec.yaml:
dependencies:
  image_picker_web_totalxsoftware:

Installation #

To use the package, import it in your Dart file:

import 'package:image_picker_web_totalxsoftware/image_picker_web_totalxsoftware.dart';

Methods #

1. pickImage #

Selects a single image from the user’s device and checks if it exceeds the specified size limit.

// Uint8List
final image = await ImagePickerWebTotalxsoftware.pickImage(
  maxImageSizeKB: 200,
  onError: (error) {
    print('Error: $error');
  },
);

  • Parameters:

    • maxImageSizeKB: Maximum image size in KB (default: 200 KB).
    • onError: Callback function to handle errors.
  • Returns: Uint8List of the image or null on failure.

#

2. pickMultipleImages #

Allows the user to select multiple images and validates each image against the specified size and count limits.

// List<Uint8List>
final images = await ImagePickerWebTotalxsoftware.pickMultipleImages(
  maxImageSizeKB: 200,
  maxImageCount: 5,
  onError: (error) {
    print('Error: $error');
  },
);

  • Parameters:

    • maxImageSizeKB: Maximum size per image in KB (default: 200 KB).
    • maxImageCount: Maximum number of images to select.
    • onError: Callback function for error handling.
  • Returns: A list of Uint8List objects or null on failure.

#

3. pickAndUploadToFirebase #

Picks a single image, validates it, and uploads it to Firebase Storage.

// String url
final url = await ImagePickerWebTotalxsoftware.pickAndUploadToFirebase(
  maxImageSizeKB: 200,
  storagePath: 'products',
  format: UploadImageFormat.webp,
  onError: (error) {
    print('Error: $error');
  },
);

  • Parameters:

    • maxImageSizeKB: Maximum image size in KB (default: 200 KB).

    • storagePath: Path in Firebase Storage to save the image.

    • format: Image format (webp or jpeg).

    • onError: Callback function to handle errors.

  • Returns: URL of the uploaded image or null on failure.

#

4. pickMultipleAndUploadToFirebase #

Allows the user to select multiple images, validates each image, and uploads them to Firebase Storage.

final urls = await ImagePickerWebTotalxsoftware.pickMultipleAndUploadToFirebase(
  maxImageSizeKB: 200,
  maxImageCount: 5,
  storagePath: 'products',
  format: UploadImageFormat.webp,
  onError: (error) {
    print('Error: $error');
  },
);
  • Parameters:

    • maxImageSizeKB: Maximum size per image in KB (default: 200 KB).
    • maxImageCount: Maximum number of images to select.
    • storagePath: Path in Firebase Storage to save the images.
    • format: Image format (webp or jpeg).
    • onError: Callback function for error handling.
  • Returns: A list of URLs of uploaded images or null on failure.

#

Example Usage #

Here’s an example Flutter app that demonstrates the use of each method:

import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:image_picker_web_totalxsoftware/image_picker_web_totalxsoftware.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp();
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Image Picker & Firebase Storage')),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.spaceEvenly,
            children: [
              ElevatedButton(
                onPressed: () async {
                  final image = await ImagePickerWebTotalxsoftware.pickImage(
                    maxImageSizeKB: 200,
                    onError: (error) => print('Error: $error'),
                  );
                  print(image);
                },
                child: const Text('Pick Image'),
              ),
              ElevatedButton(
                onPressed: () async {
                  final images = await ImagePickerWebTotalxsoftware.pickMultipleImages(
                    maxImageSizeKB: 200,
                    maxImageCount: 5,
                    onError: (error) => print('Error: $error'),
                  );
                  print(images);
                },
                child: const Text('Pick Multiple Images'),
              ),
              ElevatedButton(
                onPressed: () async {
                  final url = await ImagePickerWebTotalxsoftware.pickAndUploadToFirebase(
                    maxImageSizeKB: 200,
                    storagePath: 'products',
                    format: UploadImageFormat.webp,
                    onError: (error) => print('Error: $error'),
                  );
                  print(url);
                },
                child: const Text('Pick And Upload To Firebase'),
              ),
              ElevatedButton(
                onPressed: () async {
                  final urls = await ImagePickerWebTotalxsoftware.pickMultipleAndUploadToFirebase(
                    maxImageSizeKB: 200,
                    maxImageCount: 5,
                    storagePath: 'products',
                    format: UploadImageFormat.webp,
                    onError: (error) => print('Error: $error'),
                  );
                  print(urls);
                },
                child: const Text('Pick Multiple And Upload To Firebase'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}

Explore more about TotalX at www.totalx.in - Your trusted software development company! #

Community #

Join the Flutter Firebase Kerala community on Telegram for support and updates:

Telegram
4
likes
130
points
32
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

A Flutter web plugin for selecting and uploading images to Firebase Storage with support for single and multiple image selection, optimized upload options, and custom error handling.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

firebase_core, firebase_storage, flutter, image_picker_web, plugin_platform_interface

More

Packages that depend on image_picker_web_totalxsoftware