0

I have to create Drop Overlay filters, as in the image below, The drop overlay should appear on click of the filter icon in the toolbar.

enter image description here

For now i am using the following code, Which do now serve the purpose as per the requirement.

private void FilterEvent()
        {
      await DisplayActionSheet("", "", null, "Filter 1", "Filter 2", "Filter 3");
        }

Can any once help me to create the filters as in the attached image.

khush
  • 161
  • 1
  • 3
  • 9

1 Answers1

0

My suggestion to achieve this is to by using an AbsoluteLayout, and place the filter list above the image (Intially give IsVisible = false). when you Tap on the filter button, give IsVisible = true and Use animation LayoutTo it would visualize it as drop down.

Femil Shajin
  • 1,768
  • 6
  • 24
  • 38
  • I have listview in the screen, I want filter overlay independent of screen content, Could you please suggest sample code. – khush Apr 17 '15 at 06:04