New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

rn-chart-kit

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rn-chart-kit

test

latest
npmnpm
Version
0.1.8
Version published
Maintainers
1
Created
Source

rn-chart-kit

rn-chart-kit

Installation

npm install rn-chart-kit

Usage

import * as React from 'react';

import { StyleSheet, View, Text } from 'react-native';
import { QuadrantChart, ProgressArc } from 'rn-chart-kit';

export default function App() {
  return (
    <View style={styles.container}>
      <QuadrantChart />
      <ProgressArc
        percent1={90}
        percent2={70}
        size={200}
        gapGrid={5}
        strokeWidth={20}
        /> 
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  box: {
    width: 60,
    height: 60,
    marginVertical: 20,
  },
});

Keywords

react-native

FAQs

Package last updated on 02 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts