marcotta

Results 4 comments of marcotta

I am experiencing the same issue. I debugged the view in Xcode and it seems the `SHSheetSceneViewController` `UIView` has a width and height set to 0 for iPads, whereas on...

One way to fix this problem is to set the popoverPresentationController.sourceRect to a size smaller than the holding controller: Example: in FPPSharePlusPlugin:405 ```objc if (!CGRectIsEmpty(origin)) { activityViewController.popoverPresentationController.sourceRect = origin; //...

I have started to see this problem today too and I am also using version 3.1.0+1 from pubspec.lock ``` isar: dependency: transitive description: name: isar sha256: "99165dadb2cf2329d3140198363a7e7bff9bbd441871898a87e26914d25cf1ea" url: "https://pub.dev" source:...

Thanks @DuJerry for the tip. In my case I am running a flutter application and documentation explicitly says `initializeIsarCore` should not be used, but I can see it makes sense...