Documentation Index
Fetch the complete documentation index at: https://dynamic-docs-feat-sidebar-revamp.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
React Native
Funding
Was this page helpful?
⌘I
🚀 Stablecoin Accounts are live! Learn more
Documentation Index
Fetch the complete documentation index at: https://dynamic-docs-feat-sidebar-revamp.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
client.ui.fundingOptions.show()
client.ui.fundingOptions.hide()
import { useDynamicContext } from '@dynamic-labs/sdk-react-native'
const FundingComponent = () => {
const { client } = useDynamicContext()
const handleShowFunding = () => {
client.ui.fundingOptions.show()
}
const handleHideFunding = () => {
client.ui.fundingOptions.hide()
}
return (
<>
<Button onPress={handleShowFunding} title="Add Funds" />
<Button onPress={handleHideFunding} title="Close Funding Options" />
</>
)
}
Was this page helpful?