IAccessibilityName.cs 170 Bytes
Newer Older
Poli97's avatar
Poli97 committed
1 2 3 4 5 6 7 8 9 10
using System;
using Xamarin.Forms;

namespace XAMARINAccessibilityName
{
    public interface IAccessibilityName
    {
        void setName(View v, string s);
    }
}