order | title |
---|---|
0 |
Ant Design Mobile RN of React |
@ant-design/react-native
is the React implementation of the Ant Design's mobile specification, serving the ant and koubei wireless service.
- The UI is fully Configurable and Scalable, easily adapt to all kinds of product style.
- Support Web / iOS / Android platform (Based on React Native), has a wealth of components, can fully cover all kinds of scenes. (antd-mobile)
- Provide "Components are loaded on demand" / "Web page HD display" / "SVG Icon" optimization features, integrated development.
- Use TypeScript to develop, provide type definition files, support type and attribute smart tips for easy business development.
- Fully compatible with react / preact.
- Medium-sized and large-scale applications.
- Multi-terminal applications based on react / preact / react-native.
- Custom UI-style applications.
Before delving into Ant Design React, a good knowledge of React and ES2015 is needed.
Make sure that you had installed Node.js(> v4.x) correctly.
Can be an existing project, or a newly created empty project with create-react-native-app, you can also copy and modify from the official example scaffolding.
More official examples. Also, you can use any scaffold available in React ecosystem.
The complete procedure please check the document here: antd-mobile-sample/create-react-native-app
$ npm install @ant-design/react-native --save
or
yarn add @ant-design/react-native
react-native link @ant-design/icons-react-native
If you are using expo please make sure fonts has been loaded
import { AppLoading, Font } from 'expo';
...
...
class App extends React.Component {
state = {
theme: null,
currentTheme: null,
isReady: false,
};
changeTheme = (theme, currentTheme) => {
this.setState({ theme, currentTheme });
};
async componentDidMount() {
await Font.loadAsync(
'antoutline',
// eslint-disable-next-line
require('@ant-design/icons-react-native/fonts/antoutline.ttf')
);
await Font.loadAsync(
'antfill',
// eslint-disable-next-line
require('@ant-design/icons-react-native/fonts/antfill.ttf')
);
// eslint-disable-next-line
this.setState({ isReady: true });
}
render() {
const { theme, currentTheme, isReady } = this.state;
if (!isReady) {
return <AppLoading />;
}
return (
<Provider theme={theme}>
<RootNavigator
screenProps={{ changeTheme: this.changeTheme, currentTheme }}
/>
</Provider>
);
}
}
Example of usage:
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import Button from '@ant-design/react-native/lib/button';
class HelloWorldApp extends Component {
render() {
return <Button>Start</Button>;
}
}
AppRegistry.registerComponent('HelloWorldApp', () => HelloWorldApp);
The following two ways used to load the only components you used, select one of the ways you like.
-
Use babel-plugin-import (Recommended)
// .babelrc or babel-loader option { "plugins": [ ["import", { libraryName: "@ant-design/react-native" }] // The difference with the Web platform is that you do not need to set the style ] }
Then just change the way of import modules from @ant-design/react-native.
import { Button } from '@ant-design/react-native';
Note: Some people reflected that it would be unable to resolve module
react-dom
in a project created withreact-native init
. If you encounter the same problem, you might try to install babel-plugin-module-resolver. -
Manually import
import Button from '@ant-design/react-native/lib/button';
Please read our CONTRIBUTING.md first.
If you'd like to help us improve @ant-design/react-native, just create a Pull Request. Feel free to report bugs and issues here.
If you're new to posting issues, we ask that you read How To Ask Questions The Smart Way and How to Ask a Question in Open Source Community and How to Report Bugs Effectively prior to posting. Well written bug reports help us help you!
For questions on how to use antd, please post questions to stackoverflow using the antd
/antd-mobile-rn
tag. If you're not finding what you need on stackoverflow, you can find us on gitter as well.
As always, we encourage experienced users to help those who are not familiar with antd
!