For a tiled background in Xamarin for an iOS project I can do:
public override void ViewDidLoad() { base.View.BackgroundColor = UIColor.FromPatternImage(UIImage.FromFile("Graphics/ScannerBackgroundTile.png")); }
How to I achieve the same cross platform in Xamarin Forms Portable in XAML? Thanks.