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
Hi,
Is it possible to resizeOverlay when it isActive?
From the source of messanger_chathead.dart
, If I clicked update ovelay,
onTap: () async {
if (_currentShape == BoxShape.rectangle) {
await FlutterOverlayWindow.resizeOverlay(50, 100, true);
setState(() {
_currentShape = BoxShape.circle;
});
} else {
await FlutterOverlayWindow.resizeOverlay(
WindowSize.matchParent,
WindowSize.matchParent,
false,
);
setState(() {
_currentShape = BoxShape.rectangle;
});
}
Exception has occurred.
MissingPluginException (MissingPluginException(No implementation found for method resizeOverlay on channel x-slayer/overlay))
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
Is it possible to resizeOverlay when it isActive?
From the source of messanger_chathead.dart
, If I clicked update ovelay,
onTap: () async {
if (_currentShape == BoxShape.rectangle) {
await FlutterOverlayWindow.resizeOverlay(50, 100, true);
setState(() {
_currentShape = BoxShape.circle;
});
} else {
await FlutterOverlayWindow.resizeOverlay(
WindowSize.matchParent,
WindowSize.matchParent,
false,
);
setState(() {
_currentShape = BoxShape.rectangle;
});
}
Exception has occurred.
MissingPluginException (MissingPluginException(No implementation found for method resizeOverlay on channel x-slayer/overlay))
Thanks
The text was updated successfully, but these errors were encountered: