UI Module
The UI module allows a method of launching all of the self contained modules the LucraSDK supports. These flows can be easily integrated into your app's navigation at the appropriate time.
Presentation
export default function App() {
return (
<View style={styles.container}>
<Button
title="Show Profile"
onPress={() => LucraSDK.present(LucraSDK.FLOW.PROFILE)}
/>
<Button
title="Show Add Funds"
onPress={() => LucraSDK.present(LucraSDK.FLOW.ADD_FUNDS)}
/>
</View>
);
}LucraFlow
Gatekeeping Flows
Functionality Flows
For testing purposes the following fake credit card number/bank account can be used for deposits:
Last updated