backgroundImage method
背景图片
Implementation
Widget backgroundImage(
DecorationImage image, {
Key? key,
}) =>
DecoratedBox(
key: key,
child: this,
decoration: BoxDecoration(image: image),
);
背景图片
Widget backgroundImage(
DecorationImage image, {
Key? key,
}) =>
DecoratedBox(
key: key,
child: this,
decoration: BoxDecoration(image: image),
);