3

我已经制作了一个图像列表并ListView.builder用于显示图像,它在调试时甚至在debug apk应用程序中都可以正常工作,但是当我使用release apk它时不显示图像。

List<Activity> act = [
    Activity('assets/sports.png', 'Sports', false),
    Activity('assets/sleeping.png', 'Sleep', false),
    Activity('assets/shop.png', 'Shop', false),
    Activity('assets/relax.png', 'Relax', false),]

ListView.builder用来显示这样的图像:

ListView.builder(
              scrollDirection: Axis.horizontal,
              itemCount: act.length,
              itemBuilder: (context, index) {
                return Row(children: <Widget>[
                  SizedBox(
                    width: 15,
                  ),
                  GestureDetector(
                      child: ActivityIcon(act[index].image)));
4

0 回答 0