flutter_from_scratch icon indicating copy to clipboard operation
flutter_from_scratch copied to clipboard

A minimal Flutter Embedder from Scratch.

Results 5 flutter_from_scratch issues
Sort by recently updated
recently updated
newest added

Hi, I used the [Compile for linux](https://github.com/flutter/flutter/wiki/Compiling-the-engine) and copied the file *libflutter_engine.so icudtl.dat flutter_embedder.h* from **/engine/src/out/host_debug_unopt** directory to **flutter_from_scratch/out/** folder After this I did **ninja -C out**, and got the...

I cross compiled my flutter engine according the instructions in your article (flutter-on-raspberry-pi-mostly-from-scratch). I placed flutter_embedder.h and libflutter_engine.so in the out/ directory and ran ninja, and I cannot get past...

**Feature request** As I understand the current embedded is based on Broadcom API's. Can we have a sample embedder that uses VC4 driver on raspberry pi, https://dri.freedesktop.org/docs/drm/gpu/vc4.html Link fliutter with...

This PR addresses: 1. Compilation issues 2. CMake build file implementation 3. Touch screen working via tslib

Hi, I am just wondering if I don't want to use OpenGL, but use the SoftwareRenderer instead. How should I do? Thanks,