| 1234567891011121314151617 |
- /// App页面跳转参数
- abstract class AppPageArguments {
- /// 选择的图片资源列表
- static const selectedAssetList = "selectedAssetList";
- /// 图片预览列表(支持本地图片和网络图片)
- static const imageViewerItemList = "imageViewerItemList";
- /// 索引
- static const index = "index";
- /// Tab名称
- static const tabName = "tabName";
- /// 是否需要检查教程完成,就自动跳转到键盘引导页
- static const isCheckTutorialComplete = "isCheckTutorialComplete";
- }
|