getDisable static method

Color getDisable(
  1. bool isDarkMode
)

禁用色

Implementation

static Color getDisable(bool isDarkMode) {
  return isDarkMode ? const Color(0xFF2E2E2E) : const Color(0xffEBEBEB);
}