top of page
Search
Alex Fourman
Jul 24, 2024
Redesigning outdated UI, a case study.
We've completely redesigned a public transportation app. This is a case study of what would a Material design look when applied to an app...
Alex Fourman
May 29, 2024
Floating action button (FAB) menu animation
If you ever wondered how a FAB can open up to a menu, here is an implementation I've recently used. The way we achieve this is by...
Alex Fourman
Aug 8, 2021
How to fill a Stack widget and why?
You can say that the "how" is easy Stack( children: [ Positioned.fill( child: FlutterLogo(), ), ], ) The more important question is why...
Alex Fourman
Jul 12, 2021
Are You Doing Your Part On Stackoverflow?
Stackoverflow was created in 2008 and has been the de-facto go-to knowledge base for any developer. I can't imagine coding without it...
Alex Fourman
Jul 4, 2021
Flutter ListView Expand And Flip Animation
After doing a fade-in and expand animation I wanted to have something that is really unique to Flutter's tool-set. The animation was...
Alex Fourman
Jul 4, 2021
Flutter How To - Expandable List Tile
TL;DR here is the GitHub project with the implementation and a demo. Why? Showing information in a list is a very common pattern and often...
Alex Fourman
Jul 4, 2021
Is it too late to talk about late?
If you've been working with Flutter for a while you probably have something like the next snippet somewhere in your code class...
Alex Fourman
Jul 4, 2021
How to - "dismiss up" Flutter animation
Recently I needed a to create an animation to dismiss a banner so that it slides up under the app bar. I was sure that using...
bottom of page