flexx icon indicating copy to clipboard operation
flexx copied to clipboard

Write desktop and web apps in pure Python

Results 98 flexx issues
Sort by recently updated
recently updated
newest added

The background for this enhancement request is that there is interest from [a not-well-known but venerable python IDE](https://github.com/leo-editor/leo-editor) (for which I am a minor contributor) to implement a browser-based GUI....

type: enhancement
tag: ui

Hello, The problem "JS: RangeError: Maximum call stack size exceeded" is often encountered in the project, which causes the project to click without continuing to respond. Since I am not...

type: question

I tried to run example file and got this ``` Traceback (most recent call last): File "C:\Users\Admin\AppData\Roaming\Python\Python39\site-packages\flexxamples\demos\demo.py", line 7, in from flexx import flx ImportError: cannot import name 'flx' from...

type: task

Are there any projects that use Flexx that you could list here to see Flexx in action? Primarily, of course, I mean open source projects whose source code is listed...

It isn't 100% clear to me how to write a flexx app based around asyncio. I read through: 1. #373 2. #408 3. #413 Was async ever integrated directly into...

Hi Almarklein, I've added a dynamic container for widgets. I'm using it for a few applications and I thought of sharing it as I see some questions regarding adding and...

In order for this UI to grow to a full fledget application, I believe it needs to allow users to create and destroy widgets dynamically. The underlying code seems very...

type: discussion

Hi, Is is possible to use (Facebook) react libraries in Flexx?

I'd like to set a data attribute on widgets, as per https://developer.mozilla.org/en-US/docs/Learn/HTML/Howto/Use_data_attributes I've tried using `create_element('div', {'data-my-prop': 'my value'}, ...)` but something in Flexx seems to strip them out. Any...

I am attempting to add a Bokeh [DataTable](http://docs.bokeh.org/en/0.11.1/docs/user_guide/interaction.html#data-table) object via Flexx. Because it uses a ColumnDataSource, I assume that we can make it work very similarly to the BokehWidget for...