Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I am working with Cs-cart but can't seem to be able to load the #119

Open
cartehub opened this issue Oct 31, 2022 · 0 comments
Open

I am working with Cs-cart but can't seem to be able to load the #119

cartehub opened this issue Oct 31, 2022 · 0 comments

Comments

@cartehub
Copy link

The issue is that I can't seem to be able to get the total "amount" to load from my project on the Paystack payment page.

My code sample is as below, {totaPrice} draws a blank.

export default class extends PureComponent {

static propTypes = {
totalPrice: PropTypes.string,

};

render() {
const { totalPrice } = this.props;
return (
<View style={{flex: 1, marginHorizontal: 15}}>
<Paystack style={styles.cartInfoTotal}
paystackKey='##'
paystackSecretKey= '##'
billingEmail='##'
billingName='##'
activityIndicatorColor='green'
amount= '{totalPrice}'
onCancel={(e) => {
console.log(e);// handle response here
}}
onSuccess={(res) => {
console.log(res);// handle response here
}}
autoStart={false}
/>
{totalPrice} //this is just to check that the value of totalPrice is correct before autoloading.

);
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant