您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

10 行
302 B

  1. import 'package:flutter/material.dart';
  2. class UIConfig {
  3. final Color mainGreen = const Color(0xff0A8754);
  4. final Color buttongreen = const Color(0xff04A54F);
  5. final Color secendGreen = const Color.fromARGB(255, 75, 173, 78);
  6. final Color mainGray = const Color(0xff333333);
  7. const UIConfig();
  8. }