skip to Main Content

React native how to add a secondary color to a circular border

Hello stack overflow so basically I have something like this. <View style={styles.chart}> <Text>{props.unScannedCartons && calculateTotalProgress()}%</Text> </View> My style for "styles.chart" is chart: { width: 48, height: 48, justifyContent: "center", alignItems: "center", borderRadius: 48, borderWidth: 4, borderColor: Color.opacity(Theme.colors.ink, 0.16), }, This…

VIEW QUESTION
Back To Top
Search