react-native 使用antd-mobile的使用

首先在工程當中安裝npm install antd-mobile --save

css

安裝完後在.babelrc文件中加入react

{
  "presets": ["react-native"],
  // "plugins": [
  //   [
  //     "import",
  //      {"style": "css" , "libraryName": "antd-mobile" }
  //   ]
  // ],
  "plugins": [
    ["import", { "libraryName": "antd-mobile" }] // 與 Web 平臺的區別是不須要設置 style
  ]
}

以後在組件至今進行引用使用antd-mobilenpm

 

這篇文章的重點固然是這裏了。就是自定義antd-mobile的組件樣式解決方案react-native

RN 單個組件自定義部分樣式:

  1. 查看對應要更改的組件下面的樣式文件,eg: button/style/index.tsx
  2. 在本身的項目目錄建立樣式文件,eg: custom-button/index.tsx
  3. 在 custom-button/index.tsx 書寫樣式, eg:
import ButtonStyle from 'antd-mobile/lib/button/style/index.native'; export default { ...ButtonStyle, primaryHighlight: { // your custom style here } }
  1. 在使用頁面中給組件傳入 styles 屬性,eg: /path/to/your/file/index.js
import { Button } from 'antd-mobile'; import CustomStyles from './custom-button/index'; ... render() { .... <Button styles={CustomStyles}>Custom Button</Button> }
相關文章
相關標籤/搜索