14 lines
262 B
Dart
14 lines
262 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// [author] fengshengxiong
|
|
/// [date] 2024/5/7
|
|
/// [description] 颜色
|
|
|
|
/// 主要颜色
|
|
const primary = Colors.deepPurple;
|
|
|
|
const white = Colors.white;
|
|
|
|
const black = Colors.black;
|
|
|
|
const loadingBg = Color(0xFF616161); |