import Styles from "@/constants/Styles"; import { Dimensions, Text, View } from "react-native"; import { BarChart } from "react-native-gifted-charts"; export default function ReportChartDocument() { const barData = [ { value: 23, label: 'Gambar', frontColor: '#fac858' }, { value: 12, label: 'Dokumen', frontColor: '#92cc76' }, ]; const width = Dimensions.get("window").width; return ( JUMLAH DOKUMEN { return ( {item.value} ); }} /> ) }