summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/Renderers/IDescendantFocusToggler.cs
blob: b908e9ad04423ff638f95249366dabbe578f92d2 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace Xamarin.Forms.Platform.Android
{
	internal interface IDescendantFocusToggler
	{
		bool RequestFocus(global::Android.Views.View control, Func<bool> baseRequestFocus);
	}
}