Flutter – Drawing images with the CustomPainter
The CustomPainterer provides a method to draw an image on the canvas. First, however, you must know how to load your images from your assets and offer them to your CustomPainter. Luckily, when you know how to do this, this is not hard! Let’s quickly get started. The first step is to add the image to your assets. You have to define this asset in the pubspec.yaml. Now you can access the image in your Flutter Application. However, most examples…