我有一个简单的类,比如;
import 'dart:io';
class IDCardClass {
File frontImageFile;
File backImageFile;
}
从front_test.dart
类我需要将数据分配给frontImageFile
,back_test.dart
类我需要将数据分配给backImageFile
。
在我的home.dart
或其他***.dart
类中,我需要frontImageFile
并backImageFile
向用户显示它。
我的问题是我如何访问 Flutter 中另一个类的全局数据?
使变量像这样static
:
class IDCardClass {
static File frontImageFile;
static File backImageFile;
}
只需将类导入到另一个类中并访问变量即可。
import 'package:your_projectname/your_folder/IDCardClass.dart';
.....
var imageFile = IDCardClass.frontImageFile;
.....