rich_text_editor_controller 0.0.1+1 copy "rich_text_editor_controller: ^0.0.1+1" to clipboard
rich_text_editor_controller: ^0.0.1+1 copied to clipboard

A new Flutter package that let's you edit text in flutter text fields very easily, by simply just providing it a RichTextEditorController and RichTextField (just textfield that supports changing alignment).

A new Flutter package that let's 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 #

  • change text alignment
  • change text color
  • change text size (TBD)
  • change font style
  • change font family (TBD)
  • change font weight
  • change font features (TBD currenly supports changing 1)
  • change text decoration

Getting started #

add this to your pubspec.yaml file

dependencies:
  flutter:
    sdk: flutter
  rich_text_editor_flutter: 0.0.1

or using pub

pub add rich_text_editor_flutter

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,
            ),
          ],
        ),
      ),
    );
  }

}

Or use like normal controller

 ...
//or use normal TextField but without alignment support
TextField(
controller: controller,
maxLines: 10,
minLines:
1
,
)
,

...

Don't forget to dispose your controller

  @override
void dispose() {
  controller.dispose();
  super.dispose();
}

Additional information #

To create issues, prs or otherwise contribute in anyway, please visit the github repo

10
likes
0
pub points
74%
popularity

Publisher

unverified uploader

A new Flutter package that let's you edit text in flutter text fields very easily, by simply just providing it a RichTextEditorController and RichTextField (just textfield that supports changing alignment).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on rich_text_editor_controller