arctic-alpaca

Results 37 comments of arctic-alpaca

Has there been any discussion on how this could be implemented? As far as I can tell, generating examples is done via Serde serialize. This would mean, it's necessary to...

This also greatly reduces the documented code on [docs.rs](https://docs.rs/pnet/latest/pnet/index.html) compared to [version 0.30](https://docs.rs/pnet/0.30.0/pnet/index.html).

I'm pretty sure the ffigen task isn't run by cargo make, at least it doesn't appear in the CI logs. This command only runs task `android` https://github.com/shekohex/flutterust/blob/d7243f2cea5908d9a859d26a3ff65e7e72b69b9f/.github/workflows/ci.yml#L93-L99 I think you...

I got the Android part of the CI running with this [commit](https://github.com/arctic-alpaca/flutterust/commit/9bb0a4e2c539c1f360d78f279be88b46cc2ff0be) (this is based on your changes here). Flutter SDK wasn't in `cargo make`'s environment/path and the llvm path...

> PS: Can i somehow pull in code from other forks into this PR? Or do I have to go in and copy paste the commit? I don't think pulling...

`- '/home/runner/work/_temp/llvm/10.0/'` added to `packages/adder_ffi/pubspec.yaml` and `packages/scrap_ffi/pubspec.yaml` worked in my case, as mentioned in https://github.com/shekohex/flutterust/pull/25#issuecomment-806491213

> I will try to tackle this soon. Thank you very much! > I think the way to go here is to provide a new argument to canvas::Program::draw to perform...

This is going quite alright, I struggled a bit with the problem of out of canvas mouse up events registering as described in #356. [This](https://github.com/arctic-alpaca/orbtk/tree/canvas_interactivity) is where I'm currently at....

Is there a reason for not allowing `on_key_down_key` to access `StatesContext`? > My plan going forward is to implement a canvas_behavior similar to text_behavior so a canvas can be properly...

> There is a FocusBehavior maybe it is what you need. I couldn't figure out how to add this to canvas so I created a canvas_behavior which is basicly a...