ionic framework slide down tab

I am new to ionic framework.

i want to achieve the following layout.

enter image description here

at the top, you can see Edit, Travel Plan, Pictures, Leave. that menu is shown when you click the arrow at top-right. also please notice, that there is backdrop when you click the arrow.

so far i use tabs, here is the tabs code

<div class="tabs tabs-icon-top tabs-item-hide">
        <a href="" class="tab-item"><i class="icon ion-gear-b"></i> Edit</a>
        <a href="" class="tab-item"><i class="icon ion-document-text"></i> Travel Plan</a>
        <a href="" class="tab-item"><i class="icon ion-images"></i> Pictures</a>
        <a href="" class="tab-item"><i class="icon ion-log-out"></i> Leave</a>
    </div>

the tabs doesnt work. please let me know what should i use to achieve this?