info(String choice) async {
print(choice);
if (choice == 'Created on') {
print('hii');
StorageReference imageRef = storageRef.child(imageLocation);
await imageRef
.getMetadata()
.then((value) => print(value.creationTimeMillis));
int created = 3;
String create = timeago.format(
DateTime.fromMillisecondsSinceEpoch(created),
);
print(create);
}
Scaffold.of(context).showSnackBar(
SnackBar(
content: Text(" hiii"),
),
);
}
我已经使用了这种方法,但是它似乎不起作用上面的方法是什么]
我认为您正在寻找这个:
StorageReference imageRef = storageRef.child(imageLocation);
imageRef
.getMetadata()
.then((value) => {
String create = timeago.format(
DateTime.fromMillisecondsSinceEpoch(value.creationTimeMillis),
);
print(create);
})
需要元数据的所有代码都必须在then
块中。
或者,如果您想使用await
,则不需要then()
:
StorageReference imageRef = storageRef.child(imageLocation);
var value = await imageRef.getMetadata()
String create = timeago.format(
DateTime.fromMillisecondsSinceEpoch(value.creationTimeMillis),
);
print(create);