fullScreenImageDecoration static method

BoxDecoration fullScreenImageDecoration(
  1. String imageName
)

Implementation

static BoxDecoration fullScreenImageDecoration(String imageName) {
  return BoxDecoration(
    image: DecorationImage(
      image: AssetImage(imageName),
      fit: BoxFit.fill,
    ),
    shape: BoxShape.rectangle,
  );
}