flutter-pi
flutter-pi copied to clipboard
A light-weight Flutter Engine Embedder for Raspberry Pi that runs without X.
Hi I tried to implement the sw side slider as suggested in this link: https://gist.github.com/ardera/e7ddf7c8e477d258a26dfa9c40002626 But the cursor appears but doesn't move and I don't know if it clicks or...
Allows configuring the filesystem layout of the flutter artifacts, so where flutter-pi looks for the flutter engine, icudtl.dat, asset bundle, etc. Adds a build flag for using the meta-flutter layout:...
When I run the application with Flutter-pi, [video_player](https://pub.dev/packages/video_player) throws this exception: Unhandled Exception: PlatformException(channel-error, Unable to establish connection on channel., null, null) VideoPlayerApi.create(package:video_player_platform_interface/messages.g.dart:156:7) asynchronous suspension MethodChannelVideoPlayer.create(package:video_player_platform_interface/method_channel_video_player.dart:53:37) VideoPlayerController.initialize(package:video_player/video_player.dart:363:19) asynchronous suspension I...
Heya, first of all, thanks for your hard work. Keep it up! In the readme, you mention multiple times that we cannot do all of the work on raspberry pi,...
As discussed on issue #201 having more control over the display on which the application is rendered on is important. In order to provide this feature it's important to have...
Hi, I have modified `flutter-pi.c` so I could run 2 flutter-pi on 2 screens on my pi 4, but even after specifying 2 different output. I still have DRM related...
I'm in a peculiar position where I have a display which is vertical on it's main axis and the digitizer, i suspect, is landscape/horizontal ``` =================================== display mode: resolution: 800...
@ardera Head's up on this. I use bundle folder structure for ivi-homescreen/flutter-auto and meta-flutter. It follows the linux GTK layout - post build. Maybe via `--b` option, or whatever. The...
`icudtl.dat` is not a system library, is generally unique to an application, and really shouldn't be installed in `/usr/lib/`. In meta-flutter I install icudtl.dat to /usr/share/flutter. This is shared between...
With mice that deliver events at 1000Hz, the platform thread (especially on slower embedded devices) might become overloaded with processing mouse events. There should be a way to limit the...