final kBackgroundImage = Image.asset(
'assets/images/bg.png',
repeat: ImageRepeat.repeat,
height: double.infinity,
width: double.infinity,
);
To do something like this with a SVG background image?
final kBackgroundImage = Image.asset(
'assets/images/bg.png',
repeat: ImageRepeat.repeat,
height: double.infinity,
width: double.infinity,
);
To do something like this with a SVG background image?