react-native-youtube-iframe
react-native-youtube-iframe copied to clipboard
Auto Height
HI, I Widget work very smooth in both Andorid and iOS, but i want to have 100% width and Height as Auto, is it possible. Any work around kindly let me know.
@Dineshi2419 The standard aspect ratio for YouTube is 16:9
So you can calculate height, sample:
import { Dimensions } from "react-native";
const height = (Dimensions.get("window").width / 16) * 9;