Hi,
I added TapGestureRecognizer to stack layout. Its works well in iOS but not working in Android at all. Code is as under :
var txtCompany = new ExtendedEntryControl ("Company",false){TextColor=Color.Black,WidthRequest=300,IsEnabled=false};
txtCompany.SetBinding (Entry.TextProperty, "Companies");
var companylayout = new StackLayout () {
Children = {txtCompany},
};
var companygesture = new TapGestureRecognizer();
companygesture.NumberOfTapsRequired=1;
companygesture.Tapped += async delegate {
await Navigation.PushModalAsync (new ModalPopUp ("Company"));
};
Please help me out. Its urgent.