Skip to content

Add creative text decorations such as wavy underlines, colorful boxes, speech bubbles and more to your Flutter app. With flutter_tex_dec you can bring your apps text to life and make it stand out. Perfect for highlighting details or emphasizing the personality of your app. The package is easy to use, extendible and developer friendly.

License

Notifications You must be signed in to change notification settings

EXXETA/flutter_tex_dec

Repository files navigation

flutter_tex_dec

License

Screenshot of Feature Grid

Bring your words to life leveraging flutter_tex_dec with wavy underlines, colorful boxes, speech bubbles and more. Whether you want to highlight important details, add a playful touch or simply stand out. The package makes it easy to add personality and flair to your text.

Features

  • Boxes
  • Underline
  • Wavy Box
  • Speech Bubble

Feel free to check out the Example App and play around.

Installation

pub.dev

Add flutter_tex_dec as dependency to pubspec.yaml:

dependencies:
  flutter_tex_dec: ^0.1.0

Usage

Box Decorator

TextDrawDecorator.boxed(
  style: BoxStyle.rounded,
  text: const Text(
    'Rounded Box',
    style: TextStyle(fontSize: 32),
  ),
  strokeWidth: 2,
),

Box Decorator Example

Circle Decorator

TextDrawDecorator.circled(
  style: CircleStyle.circled,
  text: const Text(
    'Circled Text',
    style: TextStyle(fontSize: 32),
  ),
),

Circle Decorator Example

Underline Decorator

TextDrawDecorator.underlined(
  style: UnderlineStyle.horizontal,
  text: const Text(
    'Underlined Text',
    style: TextStyle(fontSize: 24),
  ),
  color: Colors.orange,
  strokeWidth: 2,
),

Underline Decorator Example

Highlight Decorator

TextDrawDecorator.highlighted(
  style: HighlightStyle.marker,
  text: const Text(
    'Highlighted Text',
    style: TextStyle(fontSize: 32),
  ),
),

Underline Decorator Example

Roadmap

TODO's

  • Fix Wavy Box corners
  • Add test automation

Planned features

  • Comic effect

Contributing

See CONTRIBUTING

Authors and acknowledgment

Authors:

Special Thanks:

  • Noah Bauer for the creative name of this package

License

See LICENSE

About

Add creative text decorations such as wavy underlines, colorful boxes, speech bubbles and more to your Flutter app. With flutter_tex_dec you can bring your apps text to life and make it stand out. Perfect for highlighting details or emphasizing the personality of your app. The package is easy to use, extendible and developer friendly.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •