image_gallery_saver 0.1.2 copy "image_gallery_saver: ^0.1.2" to clipboard
image_gallery_saver: ^0.1.2 copied to clipboard

outdated

A new flutter plugin project for save image to gallery, iOS need to add the following keys to your Info.plist file.

example/lib/main.dart

import 'dart:typed_data';

import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:image_gallery_saver/image_gallery_saver.dart';
import 'dart:ui' as ui;

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Save image to gallery',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  GlobalKey _globalKey = GlobalKey();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text("Save image to gallery"),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              RepaintBoundary(
                key: _globalKey,
                child: Container(
                  width: 200,
                  height: 200,
                  color: Colors.red,
                ),
              ),
              Container(
                child: RaisedButton(
                  onPressed: _saved,
                  child: Text("保存到相册"),
                ),
                width: 100,
                height: 50,
              )
            ],
          ),
        ));
  }

  _saved() async {
    RenderRepaintBoundary boundary =
        _globalKey.currentContext.findRenderObject();
    ui.Image image = await boundary.toImage();
    ByteData byteData = await image.toByteData(format: ui.ImageByteFormat.png);
    final result = await ImageGallerySaver.save(byteData.buffer.asUint8List());
    print(result);
  }
}
828
likes
40
points
173k
downloads

Publisher

unverified uploader

Weekly Downloads

A new flutter plugin project for save image to gallery, iOS need to add the following keys to your Info.plist file.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter

More

Packages that depend on image_gallery_saver