backgroundColor method

Widget backgroundColor(
  1. Color color, {
  2. Key? key,
})

背景颜色

Implementation

Widget backgroundColor(
  Color color, {
  Key? key,
}) =>
    DecoratedBox(
      key: key,
      child: this,
      decoration: BoxDecoration(color: color),
    );