flutter_overlay_window
flutter_overlay_window copied to clipboard
Flutter plugin for displaying flutter app over other apps on the screen
I upload my app on google play and I faced many issues one of theme is the overlay window displayed well when I download the app on the android studio...
Fixes X-SLAYER/flutter_overlay_window#57
Good work. Thanks for your contribution. Alignment enum bugs exist where drag direction is inverted on horizontal, vertical or both axis depending on alignment: TopLeft=OK CenterLeft=OK BottomLeft = Vertical drag...
I have wrote homepage.dart,there's a button,I add a function in onPress event. trailing: IconButton( icon: const Icon(Icons.map), onPressed: () async { _launchMapsLauncher( _selectedNavOp, address, latitude, longitude); _openFloatingWindow(context); /////////////////////////////////////////////////////////////////////////////////// void _openFloatingWindow...
Can be fixed in `android/src/main/java/flutter/overlay/window/flutter_overlay_window/OverlayService.java` Find and Replace ```java startForeground(OverlayConstants.NOTIFICATION_ID, notification); ``` To ```java if (Build.VERSION.SDK_INT >= 34) { startForeground( OverlayConstants.NOTIFICATION_ID, notification, ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE); } else { startForeground( OverlayConstants.NOTIFICATION_ID, notification); }...
/Users/flavio/.pub-cache/hosted/pub.dev/flutter_overlay_window-0.4.4/android/src/main/java/flutter/overlay/window/flutter_overlay_window/FlutterOverlayWindowPlugin.java:54: warning: [unchecked] unchecked call to BasicMessageChannel(BinaryMessenger,String,MessageCodec) as a member of the raw type BasicMessageChannel messenger = new BasicMessageChannel(flutterPluginBinding.getBinaryMessenger(), OverlayConstants.MESSENGER_TAG, ^ where T is a type-variable: T extends Object declared...
I put the example code in my project and when i call the overlay, some objects are not displaying (text, buttons). 
Attempt to invoke virtual method 'wd.a io.flutter.embedding.engine.a.j()' on a null object reference
Dear @X-SLAYER I'm using flutter_overlay_window latest version. Unfortunately i'm getting lots of fatal exceptions in firebase crashlytics regarding flutter_overlay_window. Bellow is the crash report from firebase crashlytics. ``` Fatal Exception:...
i have requirement whenever call incoming that time i need to the overlay window. when phone is locked the overlay windows not showing i need to unlock phone.
Hi. I create overlay paiting app. Therefore I need to switch `enableDrag` flag depend on whether start position of dragging is on canvas or top window bar. However according to...