flutter_quill 7.6.0 copy "flutter_quill: ^7.6.0" to clipboard
flutter_quill: ^7.6.0 copied to clipboard

A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.

example/lib/main.dart

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

import 'pages/home_page.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Quill Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      localizationsDelegates: [
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
      ],
      supportedLocales: [
        const Locale('en', 'US'),
        const Locale('zh', 'HK'),
      ],
      home: HomePage(),
    );
  }
}
1591
likes
0
pub points
99%
popularity

Publisher

verified publisherbulletjournal.us

A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

characters, collection, device_info_plus, diff_match_patch, flutter, flutter_colorpicker, flutter_keyboard_visibility, flutter_test, i18n_extension, pasteboard, pedantic, platform, quiver, url_launcher

More

Packages that depend on flutter_quill