我正在尝试学习抖动,但似乎无法加载资产图片。
我一直收到“══╡图像资源服务引起的异常”错误。
请参见下面的我的代码
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/
文件夹结构:[]
预先感谢!