基础组件库
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

19 lignes
612 B

  1. import 'package:flutter/material.dart';
  2. ///通用配置,避免一些多次重复的字符串被写在代码中
  3. class Constants {
  4. ///获取模块类型
  5. static const String SkipIdentifierName = "skip_identifier";
  6. ///全局context
  7. //==============================智能粘贴版===================================start
  8. static BuildContext context;
  9. ///智能搜索版是否弹起
  10. static bool isShowIntellectDialog=false;
  11. ///是否缓存设置信息
  12. static String spIsCacheSetModel="spIsCacheSetModel";
  13. //==============================智能粘贴版===================================end
  14. }