This package imports components from victory-core-native
, victory-pie-native
, and victory-chart-native
With npm, run:
$ npm install victory-native --save
Link react-native-svg with:
$ react-native link react-native-svg
Import charts from victory-native
. E.g.,
import React, { Component } from 'react';
import { VictoryBar } from "victory-native";
class App extends Component {
render() {
return (
<VictoryBar />
);
}
}
export default App;
$ npm install
$ npm start
Then open demo/ios/Demo.xcodeproj
and run the app. (Note: npm start
must run before you run the app).
This project is in a pre-release state. We're hard at work fixing bugs and improving the API. Be prepared for breaking changes!
SEMVER Minor version bumps should be considered breaking changes until we hit v1.0.0. Patches can be considered safe.
Please review our Code of Conduct before contributing.