defaultFocusedItemShadow method

List<BoxShadow> defaultFocusedItemShadow()

Implementation

List<BoxShadow> defaultFocusedItemShadow() {
  return [
    BoxShadow(
      color: Colors.black.withOpacity(0.26),
      blurRadius: 28,
      spreadRadius: 8,
      offset: const Offset(8, 16),
    ),
    BoxShadow(
      color: Colors.black.withOpacity(0.26),
      blurRadius: 28,
      spreadRadius: 8,
      offset: const Offset(-8, 2),
    ),
  ];
}