SwiftUI: handling images in Dark theme
 
 One of the latest exciting addition announced by Apple at WWDC 2019 is dark  mode for IOS . Basically, the app can display different colors if ran on dark comparing to light  color scheme. The colors of your app can be defined in your assets, specifying a different color for dark and for light scheme, under the same color name. It is not as easy with images. Therefore handling images in Dark theme can be a really useful feature for your bag of tricks.  I recently ran into the very comprehensive collection of icon images from Icons8 . They offer thousands of drawings that can be easily used in your app, providing a rich visual experience for the users. However, there is s slight issue regarding this: the default colouring  of the images is black on a white background. Of course I could invert them in Photoshop and provide 2 versions of the same image; however, this would make my image maintenance more difficult. Therefore  I decided to implement a simple class, a replacement for Image,...
 
 
