Tom Ekander

Results 32 issues of Tom Ekander

This adds tray-support for macOS like so: ```reason Native.Tray.make(~title=`Image("absolute/path/to/image.png"), ()); ``` ```reason Native.Tray.make(~title=`Text("SomeTitle"), ()); ``` ![image](https://user-images.githubusercontent.com/17602389/88718492-55fda180-d122-11ea-96f0-eae842692248.png) Begins to address #322

At least on macOS it's possible to register global hotkey-events: A common use-case is to show the app once such a key-event has been pressed. E.g. in Electron:

A-native

This is partly working. The issue seems to be that once you've rendered an image with borderRadius other images won't show. I imagine there's something shared which gets overwritten perhaps....

Since we also expose the Skia-bindings for a Canvas-like API I think it might be a good idea to start refactoring the API to utilise more named arguments e.g. `~x=...,...

good first issue
A-other

- Operating System: macOS - Revery Version: 0.30.0 - OCaml version: ~4.8 - Native, Bytecode, or JS build: Native `Revery_Lwt.startEventLoop()` does not work when logging is enabled. Removing: ``` Timber.App.enable();...

bug
A-rendering

e.g. if you open another library which also has a module which the ppx uses but doesn't implement the same functions you'll hit `unbound value`. In my case I used...

Hey all, nice work on the new example! I did notice that when resized the design breaks. I had a quick look and thought that perhaps this could be solved...

Not sure if this is a bug or not, but when passing items from one component to another one ends up with no items, despite them being available in e.g....

I see this trip up a lot of newcomers, especially with the generic `'a`. ```sh This pattern matches values of type option unit} external foo: unit => foo = "foo"...