esoftplay-event
Version:
event module on esoftplay framework
20 lines (16 loc) • 466 B
text/typescript
// noPage
import { Linking } from 'react-native'
export default class m {
static facebook(url: string): void {
let base = 'https://www.facebook.com/sharer/sharer.php?u='
Linking.openURL(base + url)
}
static twitter(url: string): void {
let base = 'http://twitter.com/share?url='
Linking.openURL(base + url)
}
static whatsapp(url: string): void {
let base = 'https://api.whatsapp.com/send?text='
Linking.openURL(base + url)
}
}