andreadaoud
andreadaoud
This adds support for manually specifying dpi scale factor. `--force-scale-factor` argument is added to examples to set factor. Tested on wayland.
If we want to display CJK characters using system font, we have to enable fontconfig support. Just add `--enable-fontconfig` to `./flutter/tools/gn` command. Could you please consider enabling this in your...
For example, on macOS: ```dart body: SettingsList( platform: DevicePlatform.android, sections: [ SettingsSection( title: Text('Options'), tiles: [ SettingsTile.switchTile( initialValue: false, onToggle: (v) {}, title: Text("Switch"), ), ], ), ], ), ```...
I find this project TRULY AMAZING, saves me a lot of time. I want to donate. Could you please open a GitHub sponsor?
https://github.com/sony/flutter-embedded-linux/commit/d88c3c55d9bce06a864f5b51a6d5a9a71293a336 Hello @vially , In my use case, my app is put into a kiosk weston compositor to be launched in fullscreen mode, and with scale factor is overrode (`./app...
This adds TCP KeepAlive support to client. Close #30, also related to #87. Three arguments are added: keepalive-time, keepalive-interval, keepalive-retries. Let's say keepalive-time=300s, keepalive-interval=10s, keepalive-retries=3. This feature works like this:...