textstyle_extensions 0.0.2 copy "textstyle_extensions: ^0.0.2" to clipboard
textstyle_extensions: ^0.0.2 copied to clipboard

outdated

Syntactic sugar for easily modifying TextStyles.

textstyle_extensions #

Syntactic sugar for easily modifying TextStyles:

// Do this:
myTextStyle.bold.italic.size(16).ltrSpace(1.6)

//Instead of this:
myTextStyle.copyWith(fontSize: 16, fontWeight: FontWeight.bold, fontStyle: FontStyle.italic, letterSpacing: 1.6,)

🔨 Installation #

dependencies:
  textstyle_extensions: ^0.0.1

⚙ Import #

import 'package:textstyle_extensions/textstyle_extensions.dart';

🕹ī¸ Usage #

The entire TextStyle API is represented, plus a convenience method for quick scaling:

Widget build(BuildContext context) {
    Text t(String v, TextStyle t) => Text(v, style: t);
    TextStyle style = TextStyle(fontSize: 12);
    return Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      children: <Widget>[
        t("Normal", style),
        t("Bigger", style.scale(1.1)),
        t("Smaller Bold / Italic / Clr", style.bold.italic.clr(Colors.redAccent).size(10)),
        t("Weight", style.w(FontWeight.w100)),
        t("Line Height", style.lnHeight(2.5)),
        t("Word Spacing", style.wrdSpace(5)),
        t("Letter Spacing", style.ltrSpace(3)),
        t("Foreground Paint", style.fg(Paint()..color = Colors.orange)),
        t("Background Paint", style.bg(Paint()..color = Colors.orange)),
        t("Shadows", style.shdwList([Shadow(color: Colors.redAccent, blurRadius: 4)])),
        t(
          "Decoration",
          style.dec(TextDecoration.underline).decThick(4).decClr(Colors.red).decStyle(TextDecorationStyle.dashed),
        ),
        t(
          "Decoration2",
          style.dec(TextDecoration.underline, thickness: 4, color: Colors.red, style: TextDecorationStyle.dashed),
        ),
      ],
    );
  }

Shortcut method names are introduced where it makes sense. This is done both for brevity, and to reduce conflicts with the underlying TextStyle properties.

🐞 Bugs/Requests #

If you encounter any problems please open an issue. If you feel the library is missing a feature, please raise a ticket on Github and we'll look into it. Pull request are welcome.

📃 License #

MIT License

23
likes
20
pub points
89%
popularity

Publisher

verified publishergskinner.com

Syntactic sugar for easily modifying TextStyles.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on textstyle_extensions