PlayerConfig -> StyleConfig -> scalingMode. Unable to change scalingMode without player recreation

Hello
I’m creating player with some custom default config where StyleConfig has scalingMode set to Fit.
I want to change this scaling mode on demand when player is playing video.
I’m setting new value to config by

 playerView.player?.config?.styleConfig?.scalingMode = Zoom

It is being set in config but player is not reacting, resizing itself.
It must be possible to resize it on demand without player reinstalization
I’ve tried invalidating player but without success :frowning:

Ok found it… I’ve missed it last time,
playerView.scalingMode = Zoom
and it works like charm :slight_smile:

I wonder if it’s possible to animate this scale change ?