conditional image in repeater

Thanks JD, unfortunately, it didn’t work. However, I found these two post that finally led me to water:
https://www.wix.com/corvid/forum/community-discussion/if-else-collapse-for-repeater-items

https://www.wix.com/corvid/forum/community-discussion/get-and-use-data-from-repeater

import wixData from 'wix-data';

$w.onReady(function () {
 //TODO: write your page related code here...
    $w("#repeater1").onItemReady(($w, itemData, index) => {
 if (itemData.android === null) {
            $w("#image5").hide();
        }

 if (itemData.iOs === null) {
            $w("#image6").hide();
        }
    });
});