i’m creating an app of movies/series Database and its almost done , but it stay one problem is , i created a button that go to youtube to see the trailer of movie but it didn’t work,
i tried two code but dont solve my problem
```<TouchableOpacity onPress={() => {
Linking.openURL('https://www.youtube.com/watch?v=${details.key.toString()}');
}}
> ```
<TouchableOpacity onPress={() => {
Linking.openURL('https://www.youtube.com/watch?v=${details.key}');
}}
>
{details.key} is the key of movie in youtube trailer,
any solutons please?