@hotdogman - you can dynamically display different images on the same image control based on the condition that you specify so long as the image exists in the media pane. As a basic example apply the below to the Image property of the Image:
If(
true,//your condition
'confirm-bg-copy-2@3x',
'another image'
)
Another version using Switch:
Switch(
YourSwitchValue,
"Result1",
'confirm-bg-copy-2@3x',
"Result2",
'16_berylsea_light',
"Result3",
'157186112'
)