Almar Klein

Results 295 issues of Almar Klein

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...

type: discussion

type: enhancement
tag: ui

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...

type: discussion
tag: testing

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.

type: task
tag: docs
tag: ui

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...

type: enhancement
tag: ui

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...

type: enhancement
tag: app
tag: event

Something like: ```py ui.Button(on_mouse_click=self.increase_counter) ```

type: enhancement
tag: event

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...

type: enhancement
tag: event

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...

type: enhancement
tag: event