Posts

Showing posts with the label background image

[Pixyway viewer] Version 0.9.4.0 released! (picture conversion)

Image
  (GLOBAL UPDATES NOTE: you will need your activation code for each update you install. If you lose it, please send us a message indicating the mail you have used to download Pixyway) Hello guys! A new version has been released: 0.9.4.0. It allows you to convert your picture into another format in a few clicks . Check the steps below to use this functionnality (*see notes at the end of the post for more details): 🚩Click on the new 'extension' button on the bottom bar: --> 🚩You will access the new conversion popup as below: 🚩Select 1 or more target extensions to convert to, then click the "Start conversion..." button: Newly created files will appear in the thumbnails preview list. ❗*Notes on conversions actually you can convert your pictures into the following formats: bmp, bmp2, bmp3 DMG Gif ICO (*Not all pictures can be converted to ICO. Max size is 256x256) JPEG, Jfif JNG MIF PCD format PNG PSD TGA TIFF WebP Actually, for some extensions, thumbnails cannot be

[Flutter] Adding background image to your pages

Image
There are many ways to add a background image to your pages, but the most common way is to use a BoxDecoration Widget. The BoxDecoration Widget is placed under a parent Container Widget (container.decoration). Then, you can customise the Image decoration using Assets images, Network images... Sample code (with an asset image): @ override Widget build ( BuildContext context ) { return GetBuilder < MainPageController >( id : 'mainpage' , init : MainPageController (), builder : ( vm ) => Scaffold ( body : Container ( width : double . infinity , height : double . infinity , decoration : const BoxDecoration ( image : DecorationImage ( image : AssetImage ( 'assets/images/dark_background2.jpg' ), fit : BoxFit . fill , )), child : SafeArea ( top : true , bottom : true , child : Container (