LondonX

Results 5 comments of LondonX

获取对象相关代码已删除,目前解决方案是通过Android广播机制来传值。 初始化悬浮窗(main.dart中) ```dart @pragma("vm:entry-point") void overlayPlayer() { runApp(const OverlayApp( child: OverlayPlayerView(), )); } ``` ```dart @pragma("vm:entry-point") void overlayDestroyer() { runApp(const OverlayApp( child: OverlayDestroyer(), )); } ``` 显示悬浮窗 ```dart await WindowConfig(...

That is strange, I got this issue just yesterday (about 14hrs ago), before this issue appears, I got one channel which has no `url`, not even `""` or `null`, and...

I notice that not all streams in json are channel empty, but a lot indeed. In my case I ignored all the streams without channel, and filtered out all the...

Now, is has `url` with `"undefined"` value

Here is my trick: ```dart GetCupertinoApp( home: Builder( builder: (context) { final theme = CupertinoTheme.of(context); return CupertinoScaffold( body: CupertinoTheme(data: theme, child: const HomeView()), ); }, ), ); ``` Simply wrap...