Almar Klein
Almar Klein
NEWS
Subscribe to this issue (via the button on the right) and get an email when I post here. E.g. a new release, incompatible changes, new cool features, etc. This allows...
We now have flake8 running in CI which will protest if the code is not formatted in the way it likes. This is kinda weird: we automated something, and now...
When Flexx runs on mobile devices, it has the potential to be a sweet platform for building apps and games. One or two examples of games would be sweet.
If updates in the state occur in great succession and causes changes to the DOM, then this can strain the browser and inhibit performance. E.g. dragging a slider which has...
The new event system introduced in #408 allows for fine-grained control of processing actions and reactions. If we add some functionality to textually represent the current pending actions/reactions, and combine...
Something like: ```py ui.Button(on_mouse_click=self.increase_counter) ```
PR #408 implements a new property system (amongst other things). Computed properties can be implemented on top of that, as a combination of a property and an implicit reaction. They...
In #408 we base the event loop on asyncio, which opens up the possibility to use async and await in tests. At this point, we cannot write actions or reactions...