image_editor_pro 1.1.8 copy "image_editor_pro: ^1.1.8" to clipboard
image_editor_pro: ^1.1.8 copied to clipboard

Image Editor Plugin with simple, easy support for image editing using paints,text and emoji like stories.

example/lib/main.dart

import 'dart:io';
import 'package:image_editor_pro/image_editor_pro.dart';
import 'package:firexcode/firexcode.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return HomePage().xMaterialApp();
  }
}

class HomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  File _image;

  Future<void> getimageditor() =>
      Navigator.push(context, MaterialPageRoute(builder: (context) {
        return ImageEditorPro(
          appBarColor: Colors.black87,
          bottomBarColor: Colors.black87,
          pathSave: null,
        );
      })).then((geteditimage) {
        if (geteditimage != null) {
          setState(() {
            _image = geteditimage;
          });
        }
      }).catchError((er) {
        print(er);
      });

  @override
  Widget build(BuildContext context) {
    return condition(
            condtion: _image == null,
            isTrue: 'Open Editor'.text().xRaisedButton(
              onPressed: () {
                getimageditor();
              },
            ).toCenter(),
            isFalse:
                _image == null ? Container() : Image.file(_image).toCenter())
        .xScaffold(
            appBar: 'Image Editor Pro example'.xTextColorWhite().xAppBar(),
            floatingActionButton:
                Icons.add.xIcons().xFloationActiobButton(color: Colors.red));
  }
}

Widget condition({bool condtion, Widget isTrue, Widget isFalse}) {
  return condtion ? isTrue : isFalse;
}
339
likes
40
points
77
downloads

Publisher

unverified uploader

Weekly Downloads

Image Editor Plugin with simple, easy support for image editing using paints,text and emoji like stories.

Repository (GitHub)

License

MIT (license)

Dependencies

collection, cupertino_icons, dio, firexcode, flutter, flutter_colorpicker, flutter_web_plugins, font_awesome_flutter, image_picker, path_provider, permission_handler, screenshot, signature, zoom_widget

More

Packages that depend on image_editor_pro