A Flutter package for easy text formatting with customizable styles between specified marks.

Features

Screenshot 2024-02-26 at 12 12 59 AM

Usage

import 'package:special_text_between_marks/special_text_between_marks.dart';

SpecialTextBetweenMarks(
                  text:
                      'This is the *Custom* example with *multiple words* between marks.',
                  openMark: '*',
                  closeMark: '*',
                  normalStyle: myNormalStyle,
                  specialStyle: mySpecialStyle,
                ),