iPhone6真机 flex下的scroll-view没有高度
发布于 5 年前 作者 rgu 1459 次浏览 来自 问答

<page style=“height:100%;”>

    <view style=“height:100%;”>

        <view style=“transform: translateY(-50%);position: relative;top: 50%;max-height:100%;display:flex;flex-direction: column”>

            <view style=“height:200rpx;”>header</view>

            <scroll-view style=“height: 100%;overflow-y:auto;overflow-x:hidden” scroll-y>

                <view wx:for="{{10}}">iPhone6看不到我</view>

            </scroll-view>

            <view style=“height:200rpx;”>footer</view>

        </view>

    </view>

</page>

1 回复

我也遇到了同样的问题, 在tab切换时,scroll-view就会丢失高度, 而且只会在苹果6下出现

回到顶部