I need to launch a webpage from my React native app on iOS in Bluefy browser. (The page will communicate to a Bluetooth peripheral device.) The Bluefy browser cannot be set as default browser in iOS.
Does anyone know how to launch it using custom url scheme with Linking?
The only thing I need to know is the url scheme for Bluefy.
According to 34n, PNN Soft reports that the scheme is bluefy://open?url=example.com
.
E.g.,
const url = 'bluefy://open?url=example.com';
Linking.openURL(url);