标签: flutter flutter-layout flutter-dependencies
为什么没有Colors的Cupertino主题包?
Colors
在导入Colors.green软件包时,可以轻松使用Material。库比蒂诺主题的Flutter颜色常数存储在哪里?
Colors.green
Material
答案 0 :(得分:1)
只需使用Cuppertino的颜色常数。
import 'package:flutter/cupertino.dart'; Container( color: CupertinoColors.activeGreen, child: Text("USER"), )