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

A lightweight, collapsible, and feature-rich text editor built on top of flutter_quill.

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
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A lightweight, collapsible, and feature-rich text editor built on top of flutter_quill.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_quill, flutter_quill_extensions

More

Packages that depend on smart_rich_editor