getX测试
弄一个简单的界面测试getx 使用的pub get: ^4.6.1 get_storage: ^2.0.3 equatable: ^2.0.3 基础设置 颜色 import 'package:flutter/material.dart'; class AppColors { AppColors._(); // Dark Theme colors static const Color darkGrey = Color(0xff303041); static const Color lightGrey = Color(0xFF3D3A50); static const Color white = Color(0xFF0EA2F6); static const Color burgundy = Color(0xFF880d1e); static const Color spaceCadet = Color(0xFFF4FCFE); // Light Theme Colors static const Color blue = Color(0xFF50B1EA); static const Color babyPink = Color(0xFFFECEE9); static const Color lavender = Color(0xFFEB9FEF); static const Color gunMetal = Color(0xFF545677); static const Color spaceBlue = Color(0xFF03254E); static const Color darkBlue = Color(0xFF011C27); } 对象结构 class Food { String id; String name...