
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
배경이미지 넣는것에서 해결을 못하고 있습니다ㅠㅠ
코드상으론 에러가 안뜨는데 어떤문제일까요..?ㅠㅠㅠ

Padding(
padding: const EdgeInsets.only(bottom: 10 ,left: 10,right: 10),
child: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/images/탑건_매버릭_포스터.jpg'),
fit: BoxFit.cover
),
),
width: double.infinity,
height: 200,
child: Center(
child: Text(
'탑건: 매버릭',
style: TextStyle(
fontSize: 38,
color: Colors.white,),
textAlign: TextAlign.center,
),
),
),
),
Padding(
padding: const EdgeInsets.only(bottom: 10 ,left: 10,right: 10),
child: Container(
width: double.infinity,
height: 200,
color: Colors.black.withOpacity(0.5),
child: Center(
child: Text(
'마녀2',
style: TextStyle(
fontSize: 38,
color: Colors.white,),
textAlign: TextAlign.center,
),
),
),
),
