rich_text_editor_controller

Creator: coderz1093

Last updated:

Add to Cart

Description:

rich text editor controller

A very lightweight package that allows rich text editing as well as providing a simple and intuitive
API for data serialization
A Flutter package that lets you edit text in flutter text fields very easily, by
simply just providing it a RichTextEditorController and RichTextField (
just TextField that supports changing alignment).
note that you can use the controller on a normal TextField but you will not be able to change
the alignment of the text.
Features #

Data serialization (you can store and fetch your styled text in json format)
add bullet points
change text alignment
change text color
change text size (TBD)
change font style
change font family (TBD)
change font weight
change font features (TBD currently supports changing 1)
change text decoration

video example
Getting started #
add this to your pubspec.yaml file
dependencies:
flutter:
sdk: flutter
rich_text_editor_flutter: 0.0.5
copied to clipboard
or
using pub
pub add rich_text_editor_flutter
copied to clipboard
Usage #
import 'package:flutter/material.dart';
import 'package:flutter/rich_text_editor_controller/rich_text_editor_controller.dart';

...

class _HomePageState extends State<HomePage> {

final RichTextEditorController controller = RichTextEditorController();

Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
children: [
RichTextField(
controller: controller,
maxLines: 10, //use or apply style like in normal text fields
minLines: 1,
),
],
),
),
);
}

}

copied to clipboard
Or use like normal controller
...
//or use normal TextField but without alignment support
TextField(
controller: controller,
maxLines: 10,
minLines: 1,
),

...
copied to clipboard
Don't forget to dispose your controller
@override
void dispose() {
controller.dispose();
super.dispose();
}
copied to clipboard
For more elaborate example, see here
Additional information #
To create issues, prs or otherwise contribute in anyway see contribution guide.
See our roadmap here

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.