我想读取手机存储的"myImages"文件夹中的一些图像。 我只需要列出这些图像。 如何打开 myImages 文件夹并通过颤振在其中列出图像?
你可以像这样使用Image.file(File('FilePath'))
:
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Image.file(File('FilePath')),
);
}
}