$ npm install react-native-cardview-wayne --save
or
$ yarn add react-native-cardview-wayne
$ react-native link react-native-cardview-wayne
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-cardview-wayne
and addRNCardview.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNCardview.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.wayne.cardview.RNCardviewPackage;
to the imports at the top of the file - Add
new RNCardviewPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-cardview-wayne' project(':react-native-cardview-wayne').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-cardview-wayne/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-cardview-wayne')
import React, {Component} from 'react'
import {
Text,
View,
} from 'react-native'
import CardView from 'react-native-cardview-wayne';
// TODO: What to do with the module?
export default class App extends Component {
render() {
return (
<CardView
style={{marginHorizontal: 12}}
cardElevation={4}
maxCardElevation={4}
radius={10}
backgroundColor={'#ffffff'}>
<View style={{padding:10, margin: 12}}>
<View>
<Text>ReactNative CardView for iOS and Android</Text>
</View>
<View>
<Text>This is test</Text>
</View>
</View>
</CardView>
);
}
};
Name | Type | Desc | Platform |
---|---|---|---|
cardElevation | Number | the elevation of the card view | IOS、Android |
maxCardElevation | Number | if not set, equals the cardElevation default |
Android |
radius | Number | the border radius of the card view | IOS、Android |
backgroundColor | String | the background color of the card view | IOS、Android |
style | Object | set style of the card view | IOS、Android |
setPreventCornerOverlap | Boolean | 是否使用PreventCornerOverlap | Android |
setUseCompatPadding | Boolean | 是否使用CompatPadding 设置内边距 | Android |