Hello I am pretty new to programming and I am trying to generate a PDF with react. I stuck at the issue to align a checkbox (I generate it with an svg polygon, please let me know if there is a better way) besides a text.
So this how i started: JS:
<Document>
<Page style={styles.body} size="A4">
<View style={{display: 'flex', justifyContent: 'center'}}>
<Svg style={styles.checkbox}>
<Polygon style={styles.box}/>
</Svg>
<Text style={styles.text}>
some text
</Text>
</View>
</Page>
</Document>
CSS:
const styles = StyleSheet.create({
text: {
margin: 14,
fontSize: 14,
textAlign: "left",
fontFamily: "Helvetica",
display: "inline-block",
},
checkbox: {
height: 21,
width: 31,
display: 'inline-block',
},
box: {
points:"20,10 30,10 30,20 20,20",
stroke:"black",
strokeWidth: 1,
},
});
I have try the suggestion from this question: text which I tried like this (it is a little bit messy sorry for that):
<Document>
<Page style={styles.body} size="A4">
<View style={{display: 'flex', justifyContent: 'center'}}>
<div className="layout">
<p>
<span className="svg-inline">
<Svg style={styles.checkbox}>
<Polygon
style={styles.box}
/>
</Svg>
</span>
<Text style={styles.text}>
some text
</Text>
</p>
</div>
</View>
</Page>
</Document>
CSS:
.layout
width: 50%;
margin: 0 auto;
border: 1px solid #750606;
}
.svg-inline{
height:1em;
}
const styles = StyleSheet.create({
text: { //=.p-celsius
margin: 14,
fontSize: 14,
textAlign: "left",
fontFamily: "Helvetica",
},
checkbox: { // =.svg-inline svg
height: 21,
width: 131,
display: 'inline-block',
},
box: {
points:"20,10 30,10 30,20 20,20",
stroke:"black",
strokeWidth: 1,
},
});
But the result remains the same. Please I need help all other things I have tried changed nothing.
I found an other solution where I am using a already existing pdf with form fields/check boxes to realize my target.
I have added the function to the onClick event of the download button.