Gravid Banner

Category: Flutter

  • 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…