subtle static method

Border subtle({
  1. bool darkMode = false,
})

Subtle border for cards and containers

Implementation

static Border subtle({bool darkMode = false}) {
  return Border.all(
    color: darkMode
        ? Colors.white.withOpacity(0.08)
        : Colors.black.withOpacity(0.06),
    width: 1,
  );
}