图像资源服务引起的抖动异常

时间:2020-05-03 11:49:11

标签: flutter dart

我正在尝试学习抖动,但似乎无法加载资产图片。

我一直收到“══╡图像资源服务引起的异常”错误。

请参见下面的我的代码

import 'package:flutter/material.dart';

void main() => runApp(MaterialApp(
  home: Home()
));

class Home extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Carole Baskin...'),
        centerTitle: true,
        backgroundColor: Colors.red[500],
      ),
      body: Center(
          child: Image.asset('images/bitch.jpg'),
          ),
      floatingActionButton: FloatingActionButton(
        onPressed: () {},
        child: Text('Click'),
        backgroundColor: Colors.red[500],
      ),
    );
  }
}

pubspec.yaml

flutter:
  uses-material-design: true
  assets:
    - images/

文件夹结构:[Images folder]

预先感谢!

1 个答案:

答案 0 :(得分:0)

尝试使缓存无效,然后在Android Studio IDE上重新启动以解决此错误。

我在下面添加了如何操作的屏幕截图:

enter image description here

enter image description here

我希望这会有所帮助。