Почему бы вам не попробовать что-то вроде этого:
<ContentView.Content>
<StackLayout Spacing="0" Orientation="Horizontal">
<Image Source="logo.png" HeightRequest="16" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" ></Image>
<ffi:SvgCachedImage Source="Images/info.svg" HeightRequest="20" HorizontalOptions="EndAndExpand" VerticalOptions="CenterAndExpand >
<ffi:SvgCachedImage.Transformations>
<fft:TintTransformation HexColor="#ffff0000" EnableSolidColor="true"/>
</ffi:SvgCachedImage.Transformations>
<ffi:SvgCachedImage.GestureRecognizers>
<TapGestureRecognizer Tapped="infoIcon_Tapped" NumberOfTapsRequired="1" />
</ffi:SvgCachedImage.GestureRecognizers>
</ffi:SvgCachedImage>
</ContentView.Content>