Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

Add background image to container in Flutter

Container(
    decoration: BoxDecoration(
        image: DecorationImage(
            image: NetworkImage('https://placeimg.com/500/500/any'),
            fit: BoxFit.cover,
        ),
    ),
)
Source by devsheet.com #
 
PREVIOUS NEXT
Tagged: #Add #background #image #container #Flutter
ADD COMMENT
Topic
Name
2+4 =