I spent weeks working on the UX experience for my next app for the RC challenge
Goal trackers are really competitive
But guess what
I made a totally unique solution
As soon it's nearly ready I'll go into the street to get direct feedbacks
05.08.2025 14:19 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
3 days of code for the @RevenueCat Shipaton challenge
โ
80% of onboarding
โ
subscription
โ
notifications
โ
authentication
โ
main feature 80% ready
And of course
โ
unit tests
Unfair advantage?
I just used my own boilerplate ๐ค
@apparencekit
04.08.2025 14:27 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
Add custom page transitions using GoRouter
You can do pretty anything with page transitions
Most of the time I don't do it
But for game or app with really different design I do it
This is really good to change your overall app experience
App is all about details
#flutterdev
01.08.2025 16:00 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0
It depends how far the widget you target is and how many times you do it.
Of context use a recursive algorithm
30.07.2025 17:17 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
- Provide a TextStyle parameter
This will only override the properties provided in the TextStyle param while keeping it to default if not
I find it more clean instead of copying a list of properties
#flutterdev #fluttertips
30.07.2025 16:00 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
You can merge two TextStyle
Ex:
You create a widget with a text
And you want to let user override some textStyle parameters
- you pass the textStyle directly as param
- or you pass all textStyle parameters (aie)
Solution
- Let's just use the merge function
30.07.2025 16:00 โ ๐ 1 ๐ 0 ๐ฌ 2 ๐ 0
๐ง Flutter tips
Riverpod automatically handled loading / error and data states
When you return a Future from the build method using the Riverpod annotation
Saves a lot of time
#flutterdev #fluttertips
29.07.2025 16:00 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
One of the reason why I prefer Dart over Typescript
Dart has one of the best union type
Makes so easy to test a type and handle all different cases
Before when you added a new type you had to search for all missing cases
Now you have an error
#flutterdev #flutter
28.07.2025 16:00 โ ๐ 5 ๐ 0 ๐ฌ 0 ๐ 0
All my Flutter tips are available on the ApparenceKit website
๐ค
#flutterdev #fluttertips
27.07.2025 16:00 โ ๐ 4 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
Reusing the same animation within your app is important
It's the kind of details that makes an app looking professional
- item appear
- item disappear
...
Here is an example using flutter_animate
Makes it really easy to make animations and reuse them
#flutterdev #fluttertips
26.07.2025 16:00 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
That's really big
You will be able to show promotion before people unsubscribe on the Apple Store
And to make it easier this will be handled through an API
So you can choose to show or not a promotion
change the image
It's a smart move
and love how it is going to be handled
26.07.2025 09:00 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
Supabase + Flutter query cheat sheet
#flutterdev #fluttertips
25.07.2025 16:00 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0
3/10
The first 10 customers are the hardest
Launching a SaaS takes time
FeedPal has 3 paying customers today
That's $150 in MRR
This is just the beginning :)
24.07.2025 09:00 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
๐คฆ Never start a cold email with
- In today's digital world
- Discover how
- ...
Instant delete
22.07.2025 11:17 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐๐ป
20.07.2025 09:22 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
4 new UI versions for my goal tracker concept
What's the one you prefer?
19.07.2025 20:01 โ ๐ 2 ๐ 0 ๐ฌ 3 ๐ 0
๐ง Flutter tips
Still the best way to have a complete camera UI with Flutter in seconds ๐
#fluttertips #flutterdev
19.07.2025 16:00 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
If you are a developer and wanna launch a successful app
๐ Spend more time on design
๐ Spend more time learning how to acquire users
You'll thank me later
18.07.2025 14:48 โ ๐ 2 ๐ 0 ๐ฌ 1 ๐ 0
Goal tracker design concept
Designing apps relaxes me
So I take one or two hours sometimes
It's good for creativity, thinking to something else...
18.07.2025 13:34 โ ๐ 3 ๐ 0 ๐ฌ 1 ๐ 0
You choose where it break instead of breaking on all exceptions
17.07.2025 21:51 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
๐ง Flutter tips
Automatically force the debugger to stop on errors even if they are handled
- only in debug mode
- helps to debug your backend
- save time searching for root cause
๐ putting this on api calls ๐
#flutterdev #fluttertips
17.07.2025 16:00 โ ๐ 2 ๐ 0 ๐ฌ 2 ๐ 0
Warmed up a USA tiktok account for 4 days...
Then posted first post
0 views
๐ฅบ
Let's create another account with another proxy
17.07.2025 07:01 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
How to change the iOS / Android system bar brightness?
It's a bit confusing but here is how to easily do it
Note you can also change it for one page wrapping it with "AnnotatedRegion<SystemUiOverlayStyle>(...)"
#flutterdev #fluttertips
16.07.2025 16:00 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
How and why use Elastic Search + Firestore together?
- For Auto complete
- Smart search (User don't have to search exactly what you have in base)
...
#flutterdev #fluttertips
15.07.2025 16:00 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
A great app icon can double your downloads. โจ
And the best way to find out?
Testing your icon and see results.
Leave nothing to chance ๐
#flutterdev #fluttertips
14.07.2025 16:00 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
"context is not mounted, app crashed"
Yep this is the kind of error you sometimes get
If you try to use the context when app is not mounted
You will get this kind of error
Solution
- launch your popup or whatever when view is ready using addPostFrameCallbak
13.07.2025 16:00 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
๐ If you look to launch a Flutter app faster using Supabase or Firebase check this
12.07.2025 16:00 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
I love bottom sheets
They are elegant and really makes apps easier to use
- option menu
- promotional offer
- app update notification
You can get user attention easily without breaking the flow
#flutterdev #fluttertips
12.07.2025 16:00 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
โก๏ธ For those who want to launch Flutter apps faster and better.
11.07.2025 16:00 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐ง Flutter tips
First out... first win
Imagine you're waiting for an answer from multiple sources.
But you end up waiting for just one answer.
Okay, this doesnโt happen that often, but imagine.
Here's Future.any.
Have you already used it? In what case?
#flutterdev #fluttertips
11.07.2025 16:00 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
Flutter/NextJS expert
Build application from idea to production
Working @dfly.app (dfly.app) with @odubu.design: The first desktop app for Bluesky ๐ฆ
๐ฎ๐น Flutter Developer ๐ Solopreneur | codigo.bestofcode.dev Learn To Code | notescalculator.com | OpenSource solidart, flutter-shadcn-ui | NeoVim
Creator of Relief Maps, a 3D GPS app for mountain sports ๐ฑ
๐ฆ @reliefmaps.bsky.social
๐๏ธ https://reliefmaps.io
Founder. Building a portfolio of mobile and web apps. Sharing what I've learned along the way. Fan of organic traffic.
mobile ~$6-8k/m
http://readreviews.dev ~$2k
โพโห.โโฉ aka "The Cloud Witch" โจ๐๐ฎ ~
Senior Flutter & TypeScript Engineer,
consulting at @vgventures.bsky.social;
CEO & Founder at @mekomi.dev;
๐๐ #Flutterista ~
๐ A game dev at heart ~
๐ณ๏ธโโง๏ธ๐ณ๏ธโ๐ she/they
Googleโs UI toolkit to build apps for mobile, web, & desktop from a single codebase. Official hashtag is #FlutterDev.
EN/FR Flutter Developer. Co-organizer of the Flutter Lyon Meetup.
All views are mine and mine alone.
Epitech Alumni.
Personal account at @meineeds.rest
@MeixDev on Birdsite
Founder of https://pibi.studio
๐ฑ Building mobile apps
โต Creating https://ShipFlutter.com
๐ค Providing expert services
(ex-@Google and others)
I post one animated flutter widget a day
#flutter dev
flutterfx.com
open for collaboration!
WORDSMITH :: finding magic in the darkโ
scarlettazile.com
๐๐ฎ๐ชพ๐ค๐งโโ๏ธโจ
she/her
Engineer at @flutterflow.io in the day and open saucing for BlueFireOSS ๐ by night โข proud husbird โข he/him โข ๐ณ๏ธโ๐ โข @wolfenrain@mastodon.social
leading shorebird.dev, formerly flutter.dev. Mostly post about Flutter.
Sr. Software Engineer specializing in Flutter, currently at Kemin Industries. Author & maintainer of macos_ui. Husband, father, musician, aspiring softball player, Orioles fan.
software engineer by day, software engineer by night. shorebird.dev. creator of the bloc library. working on brickhub.dev ๐งฑ
โจ Work @Microsoft.com on AI, Azure, and Dev Productivity advocacy
โจ Dart & Flutter Community Leader @GoogleDevExpert
โจ Pluralsight & FlutterEngineering.io author!
โจ My YouTube channel youtube.com/@mhadaily
โจ Organizer FlutterVikings.com
Product manager for @dart.dev and @flutter.dev web tech @ Google. Proud dad of three. Reality-based liberal. https://kevmoo.com (he/him)
๐ง๐ท๐ต๐น Engineer โข I like user interfaces, cinematography, pineapple pizza and math โข Google Developer Expert for Dart & Flutter
๐ค Google Developer Expert for Flutter & Dart
๐ฑ๐น Organiser @ Flutter Lithuania
๐จโ๐ป Content Creator, Speaker & Mentor
๐ฑ Mobile Tech Lead @ Billo
๐ฅ PDGA #266666