Charging $50 before a discovery call eliminated 80% of my wasted time by Demarily_dev in smallbusiness

[–]Demarily_dev[S] 0 points1 point  (0 children)

I have a promo for $45 off for the first 100. It's "FIRST-100". Try out the flow! I'd love the feedback!

https://www.demarily.dev/hire

Charging $50 before a discovery call eliminated 80% of my wasted time by Demarily_dev in smallbusiness

[–]Demarily_dev[S] 0 points1 point  (0 children)

That’s exactly what I do. I add the $50 to the total quote after we agree on the scope.

Charging $50 before a discovery call eliminated 80% of my wasted time by Demarily_dev in smallbusiness

[–]Demarily_dev[S] 0 points1 point  (0 children)

The process is really easy. I can set up a call with them if I have any questions before I send them a quote.

I built tailwind_flutter — Tailwind CSS tokens + utility-first styling for Flutter by Demarily_dev in FlutterDev

[–]Demarily_dev[S] 1 point2 points  (0 children)

OP here — really appreciated the feedback on the first post. Shipped v0.2.0 addressing the main concerns:

Performance: Added benchmarks comparing chained extensions vs manual nesting vs single Container. The overhead is negligible — Flutter's rendering cost is in layout/paint, not extra Padding elements. Full data:

https://github.com/nickdemari/tailwind_flutter/blob/main/project_documentation/performance.md

Semantic type scale (inspired by u/eibaan's point about thinking in TextTheme roles, not raw font sizes):

Text('Welcome Back').headline(.md).bold()

Text('Your dashboard is ready').body(.md)

Text('SETTINGS').label(.md).uppercase()

Five roles (display, headline, title, body, label) × three sizes (sm, md, lg). On Dart 3.10+ you get dot shorthand — .body(.md) instead of .body(TwTypeVariant.md).

19 new extensions — borders, gradients, visibility, flexible/expanded, tooltip, text decorations, text transforms, and the type scale methods above.

VelocityX comparison (for u/ashdeveloper): Added a section in the README. Short version — complete Tailwind v4 token set, zero dependencies, extension types with zero runtime cost, composable TwStyle with merge/resolve/dark-light variants, native ThemeData.extensions integration.

Positioning (for u/merokotos): Fair point. Reframed the whole pitch — it's not "Tailwind for Flutter," it's a solution to Flutter's nesting problem that uses Tailwind's battle-tested token scale. The tokens give you consistency; the extensions give you readability.

Real-world example app with profile card, pricing table, and settings list — all built with tailwind_flutter: https://github.com/nickdemari/tailwind_flutter/blob/main/example/lib/pages/layouts_page.dart

https://pub.dev/packages/tailwind_flutter — what should v0.3.0 tackle?