6 changed files with 44 additions and 3 deletions
@ -0,0 +1,21 @@ |
|||
using Avalonia.Platform; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using System.IO; |
|||
|
|||
namespace Avalonia.iOS |
|||
{ |
|||
class PlatformIconLoader : IPlatformIconLoader |
|||
{ |
|||
public IIconImpl LoadIcon(Stream stream) |
|||
{ |
|||
return null; |
|||
} |
|||
|
|||
public IIconImpl LoadIcon(string fileName) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue