Gravid Banner

Category: Flutter

  • Flexible Themes in Flutter

    Following on from my last post about the potential pitfalls of Flutter themes, let’s look at some of the benefits. Looking at articles on Medium and answers on StackOverflow it seems that a lot of people fail to grasp the power of themes, and apply styles in an ad-hoc fashion at the widget or property…

  • Styling Flutter – Nightmare in Themesville

    One of the great things about Flutter is how quickly you can progress with a project. Everyone says it. Flutter development is fast. Except when it isn’t. Where it comes unravelled for me is when I try and apply themes to my project. I’m a big fan of generic code. Declare something once, use it…

  • Sliding Timer Widget in Flutter (Part 2)

    In my previous post I created a sliding number widget using Flutter CustomPainter. In order to use this widget in action, there are two more remaining tasks. The first is to group several of the NumberSlideWidgets together in a single widget and the second is to add the timer. Firstly we’re going to create a…

  • Sliding Timer Widget in Flutter

    I’ve been experimenting a bit with Flutter animations and wanted to create a timer widget which displays the time in seconds, and updates by rolling up or down. Extending Custom Painter After a bit of research I decided to extend the CustomPainter object to draw the number elements for the timer. The first step is…