smart_rich_editor 1.0.2 copy "smart_rich_editor: ^1.0.2" to clipboard
smart_rich_editor: ^1.0.2 copied to clipboard

A lightweight, collapsible, and feature-rich text editor built on flutter_quill. Supports web clipboard, collapsible toolbar, custom editor size, cross-platform compatibility, and rich text formatti [...]

example/main.dart

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

void main() {
  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('Smart Rich Editor Demo')),
        body: Center(
          child: ElevatedButton(
            onPressed: () {
              Navigator.push(
                context,
                MaterialPageRoute(
                  builder: (_) => const RichTextEditorPage(
                    collapsibleToolbar: true,
                    editorHeight: 500,
                    toolbarAtBottom: true,
                  ),
                ),
              );
            },
            child: const Text('Open Rich Editor'),
          ),
        ),
      ),
    );
  }
}
0
likes
130
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

A lightweight, collapsible, and feature-rich text editor built on flutter_quill. Supports web clipboard, collapsible toolbar, custom editor size, cross-platform compatibility, and rich text formatting with zero configuration.

Repository (GitHub)
View/report issues

Topics

#editor #rich-text #quill #ui #text-editor

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter, flutter_quill

More

Packages that depend on smart_rich_editor