react-native-youtube-iframe icon indicating copy to clipboard operation
react-native-youtube-iframe copied to clipboard

Auto Height

Open Dineshi2419 opened this issue 4 years ago • 1 comments

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 avatar Jun 14 '21 16:06 Dineshi2419

@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;

LeonidVeremchuk avatar Oct 01 '21 10:10 LeonidVeremchuk