选择图片

This commit is contained in:
toly
2023-05-03 07:15:51 +08:00
parent 94331ae654
commit 3ea5729743
3 changed files with 146 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
class ImageOption{
final String name; // 名称
final String src; // 资源
final int min; // 每次点击时功德最小值
final int max; // 每次点击时功德最大值
const ImageOption(this.name, this.src, this.min, this.max);
}