Skip to content

Instantly share code, notes, and snippets.

@hansheng0512
Created August 27, 2021 07:23
Show Gist options
  • Save hansheng0512/5e6f6591e2d7ad65a51601e6a4f8b8c1 to your computer and use it in GitHub Desktop.
Save hansheng0512/5e6f6591e2d7ad65a51601e6a4f8b8c1 to your computer and use it in GitHub Desktop.
Add Ant Design RN for React Native Project

Ant Design RN Setup

  1. Execute Code Below
yarn add npm install antd-mobile-rn
yarn add npm install babel-plugin-import
yarn add @react-native-community/viewpager
  1. Modify babel.config.js.
module.exports = function(api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: [
      ['import', {libraryName: '@ant-design/react-native'}],
    ],
  };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment