Gravid Banner

Month: May 2024

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

  • Post Office Horizon Scandal

    Organisational Culture It is nothing to do with me, but I have been thinking a lot in the last few days about the Post Office Horizon scandal, and the ability of large software systems to ruin people’s lives. As I write, Paula Vennells is finishing her wholly inadequate testimony to the independent inquiry. I was…

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

  • Creating reusable patterns for WordPress Themes

    As I’ve hinted at before one of the advantages of writing websites from scratch is that you get to be in control of everything. Of course as a site grows in complexity that can become a disadvantage too. Control, however, is addictive – and now I am using WordPress I am working hard at bending…

  • Moving WordPress blog posts off the home page

    TL;DR – skip to the bottom. When I set up my blog a couple of weeks ago my plan was for the blog to be on a subdomain managed by WordPress and the main website to be a simple HTML page with a link to it. Not long after I completed my set-up I realised…

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