getContainerBackGround static method

Color getContainerBackGround(
  1. bool isDarkMode
)

返回一般容器的背景色 , miniInput 、 tabs

Implementation

static Color getContainerBackGround(bool isDarkMode) {
  return isDarkMode ? const Color(0xFF1a1a1a) : const Color(0xffF3F3F3);
}