react-juce
react-juce copied to clipboard
Write cross-platform native apps with React.js and JUCE
Something regarding the license of the repo: https://github.com/nick-thompson/blueprint/blob/master/LICENSE.md This is just a suggestion! I haven't a clue about the validity or usefulness.
## There are many changes here * Stylistically changed many explicit variable types to use `auto`. * Sprinkled const-ref here and there, where necessary. * Flipped the wacky Yoda conditions....
Compilers don't always do a good job of guessing what way to cast, and you might get interesting/unexpected/undesirable results!
@nick-thompson, I've started adding more Canvas API functions so figured it makes sense to open an issue here or pop something on the project board to track against? If you're...
Our current `border-width` support is fairly basic and just strokes a rectangle around a view. It is difficult to add border lines and specific edges. i.e.: ------------------------------------------------------ Item 1 ------------------------------------------------------...
Add TouchEvent capability to the View components
This issue sparked from discussion in PR #61: https://github.com/nick-thompson/blueprint/pull/61#discussion_r440796599 As Blueprint has grown, we've had to modify the duktape config inline to support the changes we need, which very much...
There's a lot to document here and I haven't done any of it :) Not sure what the tool of choice here is... git storybook looks cool, github pages would...
Currently `ReactApplicationRoot` and `EcmascriptEngine` support pushing events from native/C++ code into JS/React via the `dispatchEvent` mechanism. `dispatchEvent` is a function registered/created against the global `__BlueprintNative__` object by EventBridge.js. It seems...