imgly_editor 1.35.0 copy "imgly_editor: ^1.35.0" to clipboard
imgly_editor: ^1.35.0 copied to clipboard

CreativeEditor SDK editors for Flutter.

example/lib/main.dart

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

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: ElevatedButton(
              onPressed: () async {
                final settings = EditorSettings(license: "YOUR_LICENSE");
                final _ = IMGLYEditor.openEditor(settings: settings);
              },
              child: const Text("Open Editor")),
        ),
      ),
    );
  }
}
1
likes
140
pub points
57%
popularity

Publisher

verified publisherimg.ly

CreativeEditor SDK editors for Flutter.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on imgly_editor