Hi@akhtar,
You are using the wrong parameter. In your case, you are trying to load the image from the internet. So instead of AssetImage, you have to use Image.network keyword.
Container(
decoration: BoxDecoration(
image: DecorationImage(
image: Image.network(
"https://raw.githubusercontent.com/")
.image,
fit: BoxFit.cover))
)