A Boolean value that indicates whether the player exits full screen when playback ends.
4.1.4
Asks the delegate whether the player view controller should automatically dismiss when Picture in Picture starts.
4.3.1
Setting this property to TRUE causes the receiver to block the delivery of touch events to other views. The default value of this property is false
= false]
2.0.10
A Boolean value that determines whether subviews are confined to the bounds of the view.
= false]
1.1.15
A Boolean value that determines whether subviews are confined to the bounds of the view.
= false]
Use view.maskToBounds instead
1.1.15
The offset (in points) of the shadow. This will set "masksToBounds" property to false.
view.masksToBounds = false;
view.ios.shadowOffset = {x:10,y:10};
view.ios.shadowRadius = 5;
view.ios.shadowOpacity = 0.5;
view.ios.shadowColor = Color.GRAY;
= {x: 0.0,y: -3.0}]
2.0.6
The blur radius (in points) used to render the shadow. masksToBounds" property must be false for shadow.
= 3]
2.0.6
The value in this property must be in the range 0.0 (transparent) to 1.0 (opaque). "masksToBounds" property must be false for shadow.
= 0]
2.0.6
The color of the shadow. "masksToBounds" property must be false for shadow.
= UI.Color.BLACK]
Use UI.View#shadowColor
2.0.6
Changes the direction of unreachable child views of all components. These components are HeaderBar, BottomBar, Material Textbox, Searchview, SwipeView etc.
= UI.View.iOS.SemanticContentAttribute.AUTO]
3.1.3
Disables a view transition animation.
performWithoutAnimation
4.2.1
Picture in Picture has stopped.
didStopPictureInPicture
4.3.1
import VideoView from '@smartface/native/ui/videoview';
const videoView = new VideoView();
videoView.on(VideoView.Events.DidStopPictureInPicture, () => {
console.info('didStopPictureInPicture');
});
Picture in Picture has started.
didStartPictureInPicture
4.3.1
import VideoView from '@smartface/native/ui/videoview';
const videoView = new VideoView();
videoView.on(VideoView.Events.DidStartPictureInPicture, () => {
console.info('didStartPictureInPicture');
});
Picture in Picture is about to stop.
willStopPictureInPicture
4.3.1
import VideoView from '@smartface/native/ui/videoview';
const videoView = new VideoView();
videoView.on(VideoView.Events.WillStopPictureInPicture, (params) => {
console.info('willStopPictureInPicture', params);
});
Picture in Picture is about to start.
willStartPictureInPicture
4.3.1
import VideoView from '@smartface/native/ui/videoview';
const videoView = new VideoView();
videoView.on(VideoView.Events.WillStartPictureInPicture, (params) => {
console.info('willStartPictureInPicture', params);
});
Tells the delegate when Picture in Picture is about to stop, to give your app an opportunity to restore its video playback user interface.
restoreUserInterfaceForPictureInPictureStopWithCompletionHandler
4.3.1
import VideoView from '@smartface/native/ui/videoview';
const videoView = new VideoView();
videoView.on(VideoView.Events.RestoreUserInterfaceForPictureInPictureStopWithCompletionHandler, (params) => {
console.info('restoreUserInterfaceForPictureInPictureStopWithCompletionHandler', params);
});
Optional
parameter: booleanGenerated using TypeDoc
A Boolean value that determines whether the player automatically displays in full screen when the play button is tapped.
Property
Ios
Since
4.1.4