update ios project

update ios project
This commit is contained in:
Zeus
2024-07-24 11:51:39 +08:00
parent 876d355b18
commit 1bf69048f3
275 changed files with 3372 additions and 1015 deletions
+19
View File
@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class Colours {
static const Color text_dark = Color(0xFF333333);
static const Color text_normal = Color(0xFF666666);
static const Color text_gray = Color(0xFF888888);
static const Color gray_33 = Color(0xFF333333);
static const Color gray_66 = Color(0xFF666666);
static const Color gray_88 = Color(0xFF888888);
static const Color gray_99 = Color(0xFF999999);
static const Color gray_5A = Color(0xFF5A5A5A);
static const Color blue_main = Color(0xFF1890FF);
static const Color indexlabel_main = Color(0xFF757575);
static const Color divider = Color(0xFFF6F6F6);
static const Color divider2 = Color(0xFFD1D1D1);
}