IAccessibilityHeading.cs 278 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
using System;
using Xamarin.Forms;

namespace XAMARINHeadingNavigations
{
    public interface IAccessibilityHeading
    {
        void SetHeading(View v);

        //this is just to check if view is correctly been set as a header
        void CheckHeading(View vc);
    }
}