zoukankan      html  css  js  c++  java
  • antd-mobile中的TabBar组件

    今天使用listView的时候发现页面此时的下拉刷新属性,只能往下滚动,当手指触摸屏幕往上滚动的时候,页面没有任何的反应。。。也就是只能往下滚动不能往上滚动,对于经常使用ListView的情况下,我没有发现写法有任何的错误。

    于是开始往其他页面进行查找错误,发现使用l antd-mobile的<TabBar />组件。

    发现在使用多页面的时候,antd-mobile的例子中,有一个属性,是我的页面中所没有的:prerenderingSiblingsNumber

     把这个属性添加到页面上,所有的问题都解决了。。。

       <TabBar
            tintColor="#FE7100"
            tabBarPosition="bottom"
            prerenderingSiblingsNumber={0}
          >
            {tabBras.map((item) => (
              <TabBar.Item
                icon={
                  <div
                    style={{
                       '22px',
                      height: '22px',
                      background: `url(${item.icon}) center center /  21px 21px no-repeat`,
                    }}
                  />
                }
                selectedIcon={
                  <div
                    style={{
                       '22px',
                      height: '22px',
                      background: `url(${item.selectedIcon}) center center /  21px 21px no-repeat`,
                    }}
                  />
                }
                badge={item.badgeNum ? <span>{beyondNum(item.badgeNum)}</span> : null}
                title={item.title}
                key={item.key}
                selected={selectedTab === item.key}
                onPress={() => pressHandle(item.key)}
              >
                {renderContent(item.key)}
              </TabBar.Item>
            ))}
          </TabBar>
    

      

  • 相关阅读:
    sparksql
    axis2客户端
    windows命令
    如何进行大数据分析及处理(总结)
    linux下如何关闭防火墙?如何查看防火墙当前的状态
    mysql 快速简单安装法
    数据分析笔记
    建设数据仓库的八个步骤
    Java工作记录
    IIS虚拟目录和应用程序
  • 原文地址:https://www.cnblogs.com/liumcb/p/15338591.html
Copyright © 2011-2022 走看看