REDDIT
How do you automatically test UI animations and transitions?
Hey everyone I was wondering how you are testing animations and view transitions automatically. Most tools Iâve seen only compare static images, which doesnât really work for things that move. Iâ...
REDDIT
How I build built an interactive romance app with Flutter in 2 months - Supabase, RevenueCat, and Claude Code did the heavy lifting
Just shipped Sneak Peek Stories - interactive romance told through text message format. Took about 2 months, and honestly the technical challenges surprised me. The concept: You read an episode as a c...
REDDIT
How does Duolingo or Stimuler App have such a quick app launch to home screen speed
I was wondering in the perspective of Stimuler, SpeakX which is built using flutter caching 1gb data contribute towards the fast app launch speed? Duolingo literally just shows the splash and loads th...
REDDIT
Immutability in Dart: simple pattern + common pitfall
Iâve been exploring immutability in Dart and how it affects code quality in Flutter apps. In simple terms, immutable objects donât change after theyâre created. Instead of modifying an object, y...
MASTODON
Darf ich euch #Knudli vorstellen?
Darf ich euch #Knudli vorstellen? Zu finden auf https://knudli.de/ Ich suchte für meinen Urlaub in den Niederlanden nach einer einfachen App, die mir Spielplätze anzeigt...leider hab ich nur Apps gefu...
REDDIT
Serverpod just opened a webpage when running pub get!
I have never had a package trigger opening of a webpage. I think this is unacceptable for a variety of reasons and shows a total lack of judgement. Why is this a problem? Well, the page could contain ...
REDDIT
I got tired of manually syncing APIs with Dart â so I built a framework that generates the Dart SDK automatically
In onedef, the struct is the API contract. type GetUserAPI struct { onedef.GET `path:"/users/{id}"` Request struct{ ID string } Response User } func (h *GetUserAPI) Handle(ctx context.Context) error...
MASTODON
Бекэнд на fastify для няшных котят (aura8)Мы разработали приложение, где пользователь может…
Бекэнд на fastify для няшных котят (aura8)Мы разработали приложение, где пользователь может свайпать картинки, и с учетом лайков пользователя мы генерируем новые картинки. Ниже рассказ, с чем интересн...
MASTODON
It took me a bit to find, and internet search didn't help, so I'm documenting it here.
It took me a bit to find, and internet search didn't help, so I'm documenting it here. If you are doing Flutter Web development and don't want to be forced to install Chrome you can use Chromium. Howe...
REDDIT
Flutter + Rust
I'm building a Flutter app and want to include Rust for some of the business logic. I found that there are different approaches, however: https://pub.dev/packages/flutter_rust_bridge - This seems to b...
MASTODON
Join the Solitaire Pulse Discord!
Join the Solitaire Pulse Discord! 🌐✨A home for our community to:🤝 Suggest features & report bugs📢 Get early update & event news🎮 Organize online matchesJoin to us🙏Link here: https://discord.gg/g4...
REDDIT
M-Security: high-performance Flutter security SDK powered entirely by Rust (no platform channels, no Dart crypto)
In real-world Flutter apps, common security issues keep recurring. Secrets often leak through reverse engineering, API keys and tokens appear in binaries, sensitive data is stored locally with weak pr...
REDDIT
Moving from MVVM to Clean Architecture in Flutter as app scales â advice?
Hey devs ð I started my Flutter project using MVVM and itâs been working fine so far. But now the app is getting bigger (more features, more complexity), and Iâm thinking of moving to Clean Arc...