在我打开页面时,在我的NS6应用程序上,Wraplayout内的按钮是不可见的,但是如果我改变方向,则它是可见的!有人知道原因吗?我试图将WrapLayout注释掉,然后Buttons再次可见。
<!--<WrapLayout class="m-l-10" orientation="horizontal" visibility="{{ isLight? 'collapsed' : 'visible' }}">-->
<GridLayout columns="50, *" marginTop="-5">
<Label col="0" text="" class="h2 title rawInfoBtn font-awesome" marginBottom="0" tap="openInfo" verticalAlignment="top" horizontalAlignment="left" />
<Label col="1" text="{{_L('checklistlocation')}}" class="m-t-15" tap="openInfo" verticalAlignment="top" horizontalAlignment="left"/>
</GridLayout>
<Button text=" Neu" android:class="font-awesome raw-btn-android addBtn" ios:class="font-awesome roe-btn-ios addBtn" tap="addCheckList"/>
<Button text=" Importieren" android:class="font-awesome raw-btn-android addBtn" ios:class="font-awesome raw-btn-ios addBtn" tap="import"/>
<Button text=" Senden" class="font-awesome raw-btn-ios addBtn" tap="send"/>
<Button text=" Teilen" android:class="font-awesome raw-btn-android addBtn" ios:class="font-awesome raw-btn-ios addBtn" tap="share"/>
*<!--</ *WrapLayout*>-->
最佳答案
尝试仅注释掉visibility
属性。 isLight
属性很可能是导致此问题的原因。