flutter-pi
flutter-pi copied to clipboard
A light-weight Flutter Engine Embedder for Raspberry Pi that runs without X.
Currently the instructions for how to build the app.so is only for Windows. Would be great if the Mac equivalent was present as well.
Weird question but how would one go about running two flutter apps one on each monitor ?
Hello, I've got so strange behavior with `RawKeyboardListener`. `keyCode` is correct, but `event.logicalKey.keyLabel` returns `8` instead of `*` and the same for other key events with modifiers. I've double-checked my...
The embedder API supports a new way for sending key events for quite some time now: - https://github.com/flutter/engine/blob/bde8d452466580b9b6230a98008c5c77450c8fd4/shell/platform/embedder/embedder.h#L931-L1000 - https://github.com/flutter/engine/blob/bde8d452466580b9b6230a98008c5c77450c8fd4/shell/platform/embedder/embedder.h#L2095-L2119 Support this instead of just the old `flutter/keyevent` channel, since...
I succesfully had Flutter Gallery working on earlier Flutter version (not sure what it was). I updated everything (reinstalled actually) and got 3.3.9 now running. Only thing is that the...
I'm running Flutter 3.3.7 on a Raspberry Pi 4 Model B. My keyboard input doesn't appear in the Flutter App, only in the terminal and only after I close the...
use `EVIOCGRAB` to grab all input devices for exclusive use. otherwise, if people have a keyboard attached and a console running, the keyboard can be used to enter things on...
Instead of reading the `XKBMODEL` etc from `/etc/default/keyboard`, talk to the systemd-localed daemon to get that info: https://www.freedesktop.org/software/systemd/man/org.freedesktop.locale1.html#
I have a DSI panel on Raspberry CM4 with last kernel 6.6.28. The resolution of the DSI panel is 1364x768pixel. In the terminal I have no problem: ``` fbset mode...
Hi folks, I just updated my Pi 5 to the latest kernel version with `sudo apt update && sudo apt upgrade`. I am now running on: `6.6.26-v8-16k+` Sadly flutter-pi just...