这是我学习 getx 处理图像的又一次冒险。我从另一个来源获取了这段代码,但它并没有解决我的问题。我适合我自己的例子。如何使用选定的图像更新我的 BoxDecoration 小部件?
以下是我的小部件
GestureDetector(
onTap: () => {_onPictureSelection()},
child:Container(
height: screenHeight / 3.2,
width: screenWidth / 1.8,
decoration: BoxDecoration(
image: DecorationImage(
image: imageController.image == null
? AssetImage(pathAsset)
: FileImage(imageController.image),
fit: BoxFit.cover,
),
border: Border.all(
width: 3.0,
color: Colors.grey,
),
borderRadius: BorderRadius.all(
Radius.circular(5.0) // <--- border radius here
),
),
)),
_onPictureSelection() async {
imageController.getImage();
}
这是我的图像控制器
class ImageController extends GetxController {
static ImageController get to => Get.find<ImageController>();
File image;
String imagePath;
final _picker = ImagePicker();
Future<void> getImage() async {
final pickedFile = await _picker.getImage(source: ImageSource.camera);
if (pickedFile != null) {
image = File(pickedFile.path);
imagePath = pickedFile.path;
print(imagePath);
update();
} else {
print('No image selected.');
}
}
}
如何使用通过相机拍摄的图像更新我的 BoxDecoration 小部件,以及在哪里用我的小部件包装 obx?