I have an image that i am using BoxFit.cover for. The problem is that it makes the spinner massive. I tried to use placeholderScale to shrink but it doesn't do anything.
FadeInImage.assetNetwork(
placeholder: cupertinoActivityIndicatorSmall,
placeholderScale: .2, //tried bunch numbers; doesn't change
image: imageUrl,
height: 150,
width: MediaQuery.of(context).size.width,
fit: BoxFit.cover,
),
),