n_image_picker 1.3.0 copy "n_image_picker: ^1.3.0" to clipboard
n_image_picker: ^1.3.0 copied to clipboard

Configurable and easy-to-use cross-platform image selector.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:n_image_picker/n_image_picker.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  NImagePickerController nImagePickerController = NImagePickerController();

  @override
  void initState() {
    super.initState();

    nImagePickerController
    ..fileTypes = const [ 'png', 'jpg', 'jpeg' ]
    ..addListener(() => setState(() {}));
  }

  @override
  void dispose() {
    super.dispose();
    nImagePickerController
    ..removeListener((){})
    ..dispose();
  }

  @override
  Widget build(BuildContext context) =>

    MaterialApp(
      debugShowCheckedModeBanner: true,
      title : 'Pin Board Example',
      home  : Scaffold(
        body:
        Column(
          children: [
            NImagePicker(
              controller        : nImagePickerController,
              // this is a protected server image, you must to provide a different header in web
              onLoadingImage    : 'https://w.wallhaven.cc/full/49/wallhaven-49d5y8.jpg',
              bankgroundColor   : const Color(0xFFededed).withOpacity(0.8),
              height            : 250,
              width             : 250,
              // readOnly          : true,
              filterOpacity     : 0.2,
              borderRadius      : BorderRadius.circular(50),
              fit               : BoxFit.cover,
              border            : Border.all(color: Colors.grey, width: 1),
              shadow            : const BoxShadow(color: Colors.black, blurRadius: 5, blurStyle: BlurStyle.outer),
              margin            : const EdgeInsets.all(40),
              viewerBlur        : true,
              viewerBlurSigma   : 10,
              previewBlur       : true,
              previewBlurSigma  : 1,
            ),
            Container(
              width   : 200,
              height  : 30,
              margin  : const EdgeInsets.all(20),
              alignment: Alignment.center,
              child   :
              InkWell(
                onTap: () async => await nImagePickerController.image(key: "json_image_key_name").then((value) {
                  debugPrint(value.filename);
                }),
                child: const Text("TEST", style: TextStyle(color: Colors.black)),
              )
            )
          ],
        ),
      ),
    );
}
3
likes
0
points
610
downloads

Publisher

unverified uploader

Weekly Downloads

Configurable and easy-to-use cross-platform image selector.

Repository (GitHub)
View/report issues

Topics

#picker #image #preview #cross-platform

License

unknown (license)

Dependencies

file_picker, flutter, http, http_parser, path_provider

More

Packages that depend on n_image_picker