Alex FourmanJul 24Redesigning 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 FourmanMay 29Floating action button (FAB) menu animationIf 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 FourmanAug 8, 2021How 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 FourmanJul 12, 2021Are 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 FourmanJul 4, 2021Flutter ListView Expand And Flip AnimationAfter 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 FourmanJul 4, 2021Flutter How To - Expandable List TileTL;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 FourmanJul 4, 2021Is 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 FourmanJul 4, 2021How to - "dismiss up" Flutter animationRecently 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...