Hannes Winkler
Hannes Winkler
@BigGitWorld > can you provide an example please? ```dart Opacity(opacity: 0.9999, child: ...); DecoratedBox( position: DecorationPosition.foreground, decoration: BoxDecoration( color: const Color(0x01000000), ), child: ... ); Stack(children: [..., Positioned.fill(child: ColoredBox(color: Colors.transparent)]);...
Are you sure matchbox-keyboard would work with flutter-pi if the automatic input detection worked? matchbox-keyboard actually shouldn't work with flutter-pi at all since it depends on X11, while flutter-pi is...
Does it work if you run flutter-pi with `sudo`? (Wouldn't recommend doing that in a production environment though) If it doesn't work is something else using the display maybe?
Can you try running kmscube and see if it works?
Flutter doesn't have official audio support as of now. ([ref](https://medium.com/flutter-community/towards-full-audio-support-in-flutter-5d15800cdb8b)) The most popular plugin for audio support seems to be [`audioplayers`](https://github.com/luanpotter/audioplayers). That plugin seems to have no internal checks whether...
audio player plugin merged a few weeks ago, you should be able to use the `audioplayers` package now.
Yeah, sadly I can't provide the `gen_snapshot` binary for macOS. There's a few things that may help: - use `noah` or a VM to run it under macOS (see [this...
> Great work on this project @ardera! Thanks, I'm glad you like it! > * I tried building the engine, and got a native gen_snapshot. This would have been a...
I think it's possible to build the `gen_snapshot` without compiling the whole engine: https://medium.com/flutter-community/cross-compiling-dart-apps-f88e69824639 (See the code block where it says `# gen_snapshot (simarm)`). I think it shouldn't even require...
I'll make the mesa-specific EGL extensions optional. They're only really used for hardware overlay plane support (in order to make omxplayer work), but omxplayer doesn't work on non-pi platforms anyway...