flutter_richtext_composer 0.2.3 copy "flutter_richtext_composer: ^0.2.3" to clipboard
flutter_richtext_composer: ^0.2.3 copied to clipboard

A Flutter package for composing rich text in a i18n friendly way

flutter_richtext_composer #

Latest version on pub.dev

A Flutter package for composing RichText in a i18n friendly way.

Getting Started #

Import the library with

import 'package:flutter_richtext_composer/flutter_richtext_composer.dart';

Example #

Then you can start composing RichText like this:

RichTextComposer(
  'Hi {name}, I am {my_name}! {icon}',
  style: TextStyle(fontSize: 30),
  placeholders: {
    'name': TextSpan(
          text: 'Son',
          style: TextStyle(fontWeight: FontWeight.bold),
    ),
    'my_name': TextSpan(
          text: 'Dad',
          style: TextStyle(
            color: Colors.red,
            decoration: TextDecoration.underline,
          ),
    ),
    'icon': WidgetSpan(
      child: GestureDetector(
        child: Icon(Icons.person),
        onTap: () {
          ScaffoldMessenger.of(context).showSnackBar(SnackBar(
            content: Text('Icon has been clicked'),
          ));
        },
      ),
    ),
  },
),

To escape the placeholder, prefix with \, e.g \{placeholder}:

RichTextComposer(
  'Hi \\{dad}, I am {batman}!',
  style: TextStyle(fontSize: 25),
  placeholders: {
    'batman': TextSpan(
          text: 'Batman',
          style: TextStyle(
            color: Colors.red,
            decoration: TextDecoration.underline,
          ),
    ),
  },
),

Example

7
likes
130
pub points
63%
popularity

Publisher

verified publisherhieurocker.com

A Flutter package for composing rich text in a i18n friendly way

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_richtext_composer