'Native playback controls are missing on iOS while using expo av

I am using React native expo AV and native playback controls missing on iOS 14.0.1. But it works on Android normally. How can I fix it?

           <ScrollView style={{ marginTop: 10 }}>
              <Card>
                <Card.Title subtitle={item.name} />
                <Card.Content>
                  <VedioPlayer
                    ref={video}
                    style={styles.video}
                    source={{
                      uri: item.source
                    }}
                    // eslint-disable-next-line react/jsx-boolean-value
                    useNativeControls={true}
                    resizeMode='cover'
                    isLooping
                    onPlaybackStatusUpdate={status => setStatus(() => status)}
                  />
                </Card.Content>
              </Card>
            </ScrollView>

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source