
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
container 을 만들어서
그 안에 image를 넣으려고 링크를 넣었는데 탑건 이미지가 안뜹니다 ㅠ.ㅠ
problem은 없는데 왜 안뜨는 걸까요?

return Scaffold(
appBar: AppBar(
backgroundColor: Colors.white,
title: Text(
"Movie Rivews",
style: TextStyle(fontSize: 32, color: Colors.black),
),
),
body: Column(
children: [
Container(
margin: EdgeInsets.all(13),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
border: Border.all(color: Colors.grey)),
child: TextField(
decoration: InputDecoration(
icon: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"영화 제목을 검색해주세요.",
style: TextStyle(fontSize: 20, color: Colors.grey),
),
Icon(Icons.search),
],
),
),
),
),
Container(
margin: EdgeInsets.all(10),
decoration: BoxDecoration(
image: DecorationImage(
image:
NetworkImage("https://i.ibb.co/sR32PN3/topgun.jpg"))),
)
],
));
}
}
