- /// App页面跳转参数
- abstract class AppPageArguments {
- /// 选择的图片资源列表
- static const selectedAssetList = "selectedAssetList";
- /// 图片预览列表(支持本地图片和网络图片)
- static const imageViewerItemList = "imageViewerItemList";
- /// 索引
- static const index = "index";
- /// Tab名称
- static const tabName = "tabName";
- }
|