Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

add bg image to scaffold flutter

@override
Widget build(BuildContext context) {
  return new Scaffold(
    body: new Stack(
      children: <Widget>[
        new Container(
          decoration: new BoxDecoration(
            image: new DecorationImage(image: new AssetImage("images/background.jpg"), fit: BoxFit.cover,),
          ),
        ),
        new Center(
          child: new Text("Hello background"),
        )
      ],
    )
  );
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #add #bg #image #scaffold #flutter
ADD COMMENT
Topic
Name
3+7 =