在我打开页面时,在我的NS6应用程序上,Wraplayout内的按钮是不可见的,但是如果我改变方向,则它是可见的!有人知道原因吗?我试图将WrapLayout注释掉,然后Buttons再次可见。

<!--<WrapLayout class="m-l-10" orientation="horizontal" visibility="{{ isLight? 'collapsed' : 'visible' }}">-->
                       <GridLayout columns="50, *" marginTop="-5">
                           <Label col="0" text="&#xf05a;" 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="&#xf067;  Neu" android:class="font-awesome raw-btn-android addBtn" ios:class="font-awesome roe-btn-ios addBtn" tap="addCheckList"/>
                   <Button text="&#xf019;  Importieren" android:class="font-awesome raw-btn-android addBtn" ios:class="font-awesome raw-btn-ios addBtn" tap="import"/>
                       <Button text="&#xf1d8;  Senden" class="font-awesome raw-btn-ios addBtn" tap="send"/>
                   <Button text="&#xf1e0;  Teilen" android:class="font-awesome raw-btn-android addBtn" ios:class="font-awesome raw-btn-ios addBtn" tap="share"/>
               *<!--</ *WrapLayout*>-->

最佳答案

尝试仅注释掉visibility属性。 isLight属性很可能是导致此问题的原因。

10-05 23:40