Ошибка: вызов метода не является постоянным выражением.
Код: Выделить всё
body: ListView.builder(
itemCount: 15,
itemBuilder: (context, i) => const ListTile(
title: Text("Bitcoin",
style: TextStyle(
fontWeight: FontWeight.w500,
fontSize: 24,
)),
subtitle: Text("\$20000",
style: TextStyle(
color: Colors.grey.withOpacity(0.6), //error in this line
fontWeight: FontWeight.w700,
fontSize: 14,
)),
),
),
Подробнее здесь: https://stackoverflow.com/questions/752 ... expression