app_page_arguments.dart 375 B

1234567891011121314
  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. }