useAskPermission
Platforms:✓ Expo
Ask for permission to send push notifications and save the Expo push token to the user profile.
import { usePush } from '@healthblocks-io/native/push'
function Page() {
const askPermission = useAskPermission()
return (
<View>
<Pressable onPress={askPermission}>
<Text>Allow push notifications</Text>
</Pressable>
</View>
)
}