Изображение AssetImage не отображается
Почему-то я не могу загрузить изображение в свое приложение. Не могли бы вы помочь? Добавлен каталог в pubspec.yaml
Container(
height: MediaQuery.of(context).size.height / 3.8,
child: Stack(
children: [
Positioned(
left: 16.0,
top: 16.0,
bottom: 16.0,
right: 16.0,
child: Container(
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(10.0),
image: DecorationImage(
image: AssetImage("assets/pictures/NYC_01/NYC_01_01.webp"),
fit: BoxFit.cover
)
)
),
),