jezell

jezell

@jezell.bsky.social

Software Designer. Currently hacking: AI, Agents, Flutter

79 Followers 74 Following 75 Posts Joined Nov 2024
10 months ago

Yo

0 0 0 0
1 year ago

Just doing my weekly bsky check πŸ˜‚

3 0 0 0
1 year ago

hi

2 0 6 0
1 year ago

I could make some, but I thought everyone came here to get away from people like me. I don't want to crash the party πŸ˜‚

4 0 1 0
1 year ago

Checking back to see if anyone started posting here yet. Seems a bit more dead every time I come back.

4 0 3 0
1 year ago
Post image

Flutter is trending today. All the AI startups need cross platform tooling.

2 0 0 0
1 year ago

shadcn-ui #99 update

Released the v0.17.3

- FIX: `ShadTable` protect `onExit` from setting value after dispose (thanks to @jezell.bsky.social)

6 1 0 0
1 year ago

Very cool. Tailscale really is awesome for distributed teams.

1 0 0 0
1 year ago

Still pretty quiet on the blue app.

2 0 2 0
1 year ago
Video thumbnail

shadcn-ui #96 update

Released the v0.16.3
- FEAT: Add `ShadInputOTP` and `ShadInputOTPFormField` components.
- BREAKING CHANGE: The `ShadBorder` no longer has default values, if you want to see the border rendered provide a color and a width greater than 0.

4 1 2 0
1 year ago
Preview
Monorepo Progress Updates: Day N+2 Β· Issue #160628 Β· flutter/flutter Hello Flutter Community! We will use this issue to communicate further progress. Day 1 saw the merging of three repositories and then some fast-follow updates to kick the tires on presubmits and th...

The #flutter tree is merged and open again. Thank you to all that helped out!

github.com/flutter/flut...

19 3 1 0
1 year ago

So awesome

2 0 0 0
1 year ago

Hmm... what's this:

github.com/loic-sharma/...

Maybe it's that thing everyone is talking about? 🀣

1 0 0 0
1 year ago
Post image

GG

0 0 0 0
1 year ago
Post image

A sign of the times

0 0 0 0
1 year ago

Love seeing a flurry of monorepo related commits coming through the flutter notifications.

1 0 0 0
1 year ago
x.com

Flutter Space time
x.com/i/spaces/1Ow...

0 0 0 0
1 year ago
Preview
AI Chatbot AI Chatbot built with Next.js, Vercel AI, shadcn.

Flutter AI SDK sucks. Do better. If anyone thinks this is gonna make people use Flutter for AI, they are smoking something. Next.JS vs Flutter samples:

Official Javascript Chatbot Sample (NextJS):
minimal-chatbot.vercel.app

Official Flutter Chatbot Sample:
flutter-ai-toolkit-examp-60bad.web.app

2 0 1 0
1 year ago

Yeah I love Flutter. It's my favorite framework. I just want it to be better!

1 0 0 0
1 year ago
Post image

Lies. Flutter crashes on Ultrawide high resolution displays. It also doesn't support VisionOS or AndroidXR. I wish this were true, but it's so far from the truth that it's embarrassing.

1 0 1 0
1 year ago
Post image

Engine is now part of the #Flutter monorepo

groups.google.com/g/flutter-an...
#FlutterDev

31 4 1 0
1 year ago
Post image

This is the best thing to happen to Flutter this year.

2 0 0 0
1 year ago

I should have said Controller is a "Change Notifier" not "Value Notifier". Extra value prop is weird for the controller.

0 0 1 0
1 year ago

Two options:

1) In simple cases the controller is just a value notifier because that's all you need

2) In more complex cases, the controller publishes events and allows the user to subscribe to them (either via a Stream or controller provided subscription mechanism).

1 0 1 0
1 year ago

Well it is, but if I see a widget with a bunch of value notifiers for every property I'm gonna think someone as putting way too much logic in their widget and they should have just built a controller class. It's hard to pass around groups of value notifiers, easy to pass around a controller.

0 0 1 0
1 year ago

They are decent for theming, media queries, and UI framework concerns. Still tend to fall apart with overlays but the less of them you have to manually copy into a new tree when you need screenshots or use overlays, the better. Also can be an escape hatch when you don't own all the code.

1 0 0 0
1 year ago

FFI isn't supported on web where these issues are really problematic. I actually had to contribute changes to the web engine to make it possible though.

1 0 0 0
1 year ago

Maybe if you want to handle those cases. In practice keys tend to be an easier solution to handle property changes in stateful widgets though. How much code do you want to type for something so basic?

0 0 0 0
1 year ago

The late final is also bound to the lifecycle. it won't get executed until it is accessed from build since late is lazy. Since a promise can't return in the current run of the event loop, the result will be returned after the first build either way. So in practice it's almost identical.

2 0 0 0
1 year ago

I don't mind streams for data from servers, but for event streams I don't like the complication compared to JS EventEmitter.

I avoid ValueNotifiers because they are overly complicated to use for what they do. Controllers can definitely use ChangeNotifier if you don't need granular notifications.

1 0 1 0