So, the selection box does not work on an Android device (for example, galaxy s6). I use an ionic structure. When I press the select button, nothing appears, but if I click on it (it is very difficult), an option will be displayed. how do i know this is an ionic error .. any solutions? this image in advance in the selection window and this menu of options
<div class="list list-language">
<label class="item item-input item-icon-left item-select">
<div class="input-label">
<i class="flag {{ $root.locale }}"></i>
<i class="icon icon-arrow-right-alt"></i>
</div>
<select ng-model="$root.locale" ng-change="vm.changeLocale($root.locale)" tabindex="-1">
<option ng-selected="$root.locale == 'en'" value="en">{{ 'ENGLISH' | translate }}</option>
<option ng-selected="$root.locale == 'ka'" value="ka">{{ 'GEORGIAN' | translate }}</option>
<option ng-selected="$root.locale == 'ru'" value="ru">{{ 'RUSSIAN' | translate }}</option>
</select>
</label>
</div>
source
share