Yo
11.05.2025 17:19 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Yo
11.05.2025 17:19 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Just doing my weekly bsky check ๐
31.01.2025 23:38 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0hi
31.01.2025 18:42 โ ๐ 2 ๐ 0 ๐ฌ 6 ๐ 0I could make some, but I thought everyone came here to get away from people like me. I don't want to crash the party ๐
14.01.2025 22:58 โ ๐ 4 ๐ 0 ๐ฌ 1 ๐ 0Checking back to see if anyone started posting here yet. Seems a bit more dead every time I come back.
14.01.2025 17:17 โ ๐ 4 ๐ 0 ๐ฌ 3 ๐ 0Flutter is trending today. All the AI startups need cross platform tooling.
05.01.2025 09:12 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
shadcn-ui #99 update
Released the v0.17.3
- FIX: `ShadTable` protect `onExit` from setting value after dispose (thanks to @jezell.bsky.social)
Very cool. Tailscale really is awesome for distributed teams.
01.01.2025 17:19 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Still pretty quiet on the blue app.
31.12.2024 22:26 โ ๐ 2 ๐ 0 ๐ฌ 2 ๐ 0
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.
The #flutter tree is merged and open again. Thank you to all that helped out!
github.com/flutter/flut...
So awesome
19.12.2024 22:31 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
Hmm... what's this:
github.com/loic-sharma/...
Maybe it's that thing everyone is talking about? ๐คฃ
GG
19.12.2024 09:47 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0A sign of the times
19.12.2024 04:18 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Love seeing a flurry of monorepo related commits coming through the flutter notifications.
19.12.2024 02:52 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Flutter Space time
x.com/i/spaces/1Ow...
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
Yeah I love Flutter. It's my favorite framework. I just want it to be better!
18.12.2024 18:15 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Lies. 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.
18.12.2024 17:27 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
Engine is now part of the #Flutter monorepo
groups.google.com/g/flutter-an...
#FlutterDev
This is the best thing to happen to Flutter this year.
18.12.2024 16:54 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0I should have said Controller is a "Change Notifier" not "Value Notifier". Extra value prop is weird for the controller.
17.12.2024 19:16 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
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).
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.
17.12.2024 17:06 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0They 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.
17.12.2024 17:05 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0FFI 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.
17.12.2024 17:02 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Maybe 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?
17.12.2024 17:01 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0The 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.
17.12.2024 16:59 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
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.