bykovme/nswallet

View on GitHub
src/NSWallet/NSWallet.Mac/Interfaces/ThemeNative.cs

Summary

Maintainability
A
0 mins
Test Coverage
using NSWallet.iOS;
using Xamarin.Forms;

[assembly: Dependency(typeof(ThemeNative))]
namespace NSWallet.iOS
{
    public class ThemeNative : IThemeNative
    {
        public void SetColors(Color color)
        {
            // Do nothing
        }
    }
}