app_page_arguments.dart 517 B

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