Hi@akhtar,
Scaffold doesn't support any concept of a background image. What you can do is give the Scaffold a transparent color and put it in a Container and use the decoration property to pull in the required background image. You can see the below code.
Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(
"images/background.jpg")
.image,
fit: BoxFit.cover))
)
To know more, join our Flutter Certification today.