mb_rich_editor 1.2.1 copy "mb_rich_editor: ^1.2.1" to clipboard
mb_rich_editor: ^1.2.1 copied to clipboard

A highly customizable WebView-based rich text editor for Flutter with pre-built toolbar.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'features/editor/widgets/rich_editor_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'MB Rich Editor Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
        useMaterial3: true,
      ),
      home: const RichEditorScreen(),
    );
  }
}
0
likes
160
points
466
downloads

Publisher

unverified uploader

Weekly Downloads

A highly customizable WebView-based rich text editor for Flutter with pre-built toolbar.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on mb_rich_editor