I am new to both AngularJs and ionic framework. I am trying to create a drop down list component. I was able to do that with the below code.
HTML:
<ion-view title="Drop down list">
<ion-content>
<div class="list list-inset">
<label class="item item-input item-select">
<div class="input-label">
</div>
<select>
<option selected>State 1</option>
<option >State 2</option>
<option>State 3</option>
<option>State 4</option>
</select>
</label>
</div>
</ion-content>
</ion-view>
But, I need to customise the UI to match the google style specification. How can I do that? I need a dropdown list with the below look and feel.