Fullscreen mode not working in android ,loader should be there while loading the video
Hii @cornedor , Video Fullscreen mode is working on ios, but not in android it will not show that option Please implement this option ASAP. Thank You can you please implement the loading feature , need to show the loader while loading the video
react-native-video-player:"^0.12.0" react-native-video:"^5.2.0"
++++ same
i didnt see the loader, only black screen
same
You can add custom loader on video, use <ActivityIndicator/> from 'react-native' as a loader or another you preferred. You can use onLoadStart() and onLoad() function props for start and stop ActivityIndicator (loader). See below code.
import VideoPlayer from 'react-native-video-player'; import { ActivityIndicator } from 'react-native';
const [loading, setLoading] = useState(false);