如何访问 Flutter 中另一个类的全局数据?



我有一个简单的类,比如;

import 'dart:io';
class IDCardClass {
File frontImageFile;
File backImageFile;
}

front_test.dart类我需要将数据分配给frontImageFileback_test.dart类我需要将数据分配给backImageFile

在我的home.dart或其他***.dart类中,我需要frontImageFilebackImageFile向用户显示它。

我的问题是我如何访问 Flutter 中另一个类的全局数据?

使变量像这样static

class IDCardClass {
static File frontImageFile;
static File backImageFile;
}

只需将类导入到另一个类中并访问变量即可。

import 'package:your_projectname/your_folder/IDCardClass.dart';
.....
var imageFile = IDCardClass.frontImageFile;
.....

相关内容

  • 没有找到相关文章

最新更新