Sometimes one wants to build a completely fullscreen experience with or without an image background. There are 2 ways to do this: Without using an AppBar and use SafeArea to keep our UI elements inside the ‘safe’ area on our page. The downside of this method is that we cannot use actions in our AppBar […]
Tag Archives: Flutter
FloatingActionButton deep dive Part 2: Create a Speed Dial widget
In my previous post, I went through 2 types of FloatingActionButtons and explained how to position them on a page. As promised in this post I’m going to show you how to create a so-called Speed Dial widget using FABs and animation. It’s actually quite easy to do. I’m going to show you step-by-step how […]
Deep dive into FloatingActionButton in Flutter: Part 1
You can find part 2 here FloatingActionButton is a very useful Widget in a MaterialApp. It usually is (and should be) used as a primary action in a Scaffold, which is a top-level container in MaterialApp. In this post, I want to talk about how to use FloatingActionButtons and explore their possibilities as much as […]