flutter_tailwindcss 0.0.4 copy "flutter_tailwindcss: ^0.0.4" to clipboard
flutter_tailwindcss: ^0.0.4 copied to clipboard

Experience tailwind writing flutter patterns.

flutter_tailwindcss #

Experience tailwind writing flutter patterns.

Introduction #

中文 | English

How to use #

dependencies:
  flutter_vant_kit: ^0.0.4

Planing #

doing name verison
🚀 done TwColor 0.0.2
🚀 done Spacing 0.0.3
👷 doing TwText -
👷 doing TwFont -
⏳ planing BorderRadius -
⏳ planing BorderWidth -
⏳ planing Divide -
⏳ planing Shadow -

I think so much for the moment, and I will modify it according to the actual situation later.

Example #

colors #

spacing #

TwText #

'TwText' is used in combination with 'TwFont'. TwText is the equivalent of Text in flutter but with an extra 'className' parameter.

** Look at the difference with 'tailwind' **

<p class="font-sans text-lg font-medium text-slate-900">
  The quick brown fox jumps over the lazy dog.
</p>
TwText(
    'The quick brown fox jumps over the lazy dog.', className: [
    /// 文字等宽
    TwFont().sans,
    /// 文字大小 + 行高
    TwFont().text.lg,
    /// 文字颜色
    TwFont().slate.shade900,
    /// 加粗
    TwFont().medium
])

Because TwFont is a class, you don't need to install plug-ins to do this

Demo in the project #

3
likes
110
pub points
1%
popularity

Publisher

unverified uploader

Experience tailwind writing flutter patterns.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, google_fonts, path

More

Packages that depend on flutter_tailwindcss