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

A Flutter styling package based on the standards of Tailwind. Directly access to the default colors & same way of styling as in HTML with Tailwind.

tailwind_standards #

A styling package based on Tailwind standards. It uses the default colors, sizes and weight. On top of that it has the TText widget that takes classes the same way how you use tailwind in HTML.

Features #

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

Getting started #

To install the package run the following command.

flutter pub add tailwind_standards

Usage #

TColor #

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

Color tcolor = TColor.slate500;

Alt text

TSize #

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

int tsize = TSize.lg;

TWeight #

TWeight translates the tailwind naming convention to font weights to Flutter's FontWeight

FontWeight tweight = TWeight.semibold;

TText #

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

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

Additional information #

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

23
likes
150
pub points
58%
popularity

Publisher

verified publishertiespol.nl

A Flutter styling package based on the standards of Tailwind. Directly access to the default colors & same way of styling as in HTML with Tailwind.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on tailwind_standards