I am working on a flutter quiz application and it fetches question and images from JSON file When the app is running in question with no images I am getting a loading symbol & I need to remove that loading symbol in question with no images using if but I am running into errors I am attaching the Psuedo Code can someone tell how can I do it ???
Expanded(
child: AspectRatio(
aspectRatio: 16 / 11,
child: ClipRect(
child: SizedBox(
height: 50,
child: PhotoView(
imageProvider: AssetImage(
myQuestion[i]["Image"] ?? "None"),
minScale:
PhotoViewComputedScale.contained *
0.5,
maxScale:
PhotoViewComputedScale.covered * 2,
initialScale: 0.6,
backgroundDecoration: BoxDecoration(
color: Theme.of(context).canvasColor,
),
),
),
),
),
),