You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i'm trying to implement a custom watermark over a BetterPlayer widget, However, it works just fine when the video is NOT in full screen i.e THE PHONE IS IN PORTRAIT MODE (IMAGE below):
but the problem is when i enter full-screen mode, flutter widget inspector shows that the watermark is still in place ,but it's not shown on screen (image below):
this is my code:
`@override
Widget build(BuildContext context) {
final width = MediaQuery.of(context).size.width;
final height = MediaQuery.of(context).size.height;
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
i'm trying to implement a custom watermark over a BetterPlayer widget, However, it works just fine when the video is NOT in full screen i.e THE PHONE IS IN PORTRAIT MODE (IMAGE below):
but the problem is when i enter full-screen mode, flutter widget inspector shows that the watermark is still in place ,but it's not shown on screen (image below):
this is my code:
`@override
Widget build(BuildContext context) {
final width = MediaQuery.of(context).size.width;
final height = MediaQuery.of(context).size.height;
}
`
Beta Was this translation helpful? Give feedback.
All reactions