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.
- Boxes
- Underline
- Wavy Box
- Speech Bubble
Feel free to check out the Example App and play around.
Add flutter_tex_dec as dependency to pubspec.yaml
:
dependencies:
flutter_tex_dec: ^0.1.0
TextDrawDecorator.boxed(
style: BoxStyle.rounded,
text: const Text(
'Rounded Box',
style: TextStyle(fontSize: 32),
),
strokeWidth: 2,
),
TextDrawDecorator.circled(
style: CircleStyle.circled,
text: const Text(
'Circled Text',
style: TextStyle(fontSize: 32),
),
),
TextDrawDecorator.underlined(
style: UnderlineStyle.horizontal,
text: const Text(
'Underlined Text',
style: TextStyle(fontSize: 24),
),
color: Colors.orange,
strokeWidth: 2,
),
TextDrawDecorator.highlighted(
style: HighlightStyle.marker,
text: const Text(
'Highlighted Text',
style: TextStyle(fontSize: 32),
),
),
- Fix Wavy Box corners
- Add test automation
- Comic effect
See CONTRIBUTING
Authors:
Special Thanks:
- Noah Bauer for the creative name of this package
See LICENSE