tailwind_standards 1.1.1 copy "tailwind_standards: ^1.1.1" to clipboard
tailwind_standards: ^1.1.1 copied to clipboard

Tailwind CSS for Flutter. Colors, Sizes, Weights and a TText widget to style your app.

Tailwind Standards #

Style your Flutter app with Tailwind CSS. Colors, Sizes, Weights and a TText widget that takes classes. All in the same structure as you would use Tailwind CSS in HTML.

Features #

  • TColor: Use all tailwind default colors
  • TText: An extension on the Flutter Text widget that can be styled in the same way as a class in HTML.
  • TSize: All tailwind default sizes are easily accessible
  • TWeight: Use the naming convention of Tailwind CSS for weights

Getting started #

To install the package run the following command.

flutter pub add tailwind_standards
copied to clipboard

Usage #

TColor #

TColor has all the default colors that Tailwind CSS offers. You can access every color in the following way.

Color tcolor = TColor.slate500;
copied to clipboard

Alt text

TText #

TText is an extension of the Text widget from Flutter. It takes classes in the same structure as when you use Tailwind CSS for HTML.

const TText(
    'TText widget from tailwind_standards!',
    props: 'text-xs text-gray-500 text-center font-bold',
),
copied to clipboard

TSize #

TSize has all the default Tailwind CSS sizes that are mostly used in padding, margin, etc.

int tsize = TSize.lg;
copied to clipboard

TWeight #

TWeight translates the Tailwind CSS naming convention to the font weights used in Flutter.

FontWeight tweight = TWeight.semiBold;
copied to clipboard

Additional information #

Feedback is always welcome! If you see improvements or if something comes to your attention, please let me know or create a pull request.

25
likes
150
points
101
downloads

Publisher

verified publishertiespol.nl

Weekly Downloads

2024.10.03 - 2025.04.17

Tailwind CSS for Flutter. Colors, Sizes, Weights and a TText widget to style your app.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on tailwind_standards