Feodor Fitsner

Results 288 comments of Feodor Fitsner

Yes, I've been able to look into that. Suprisingly, it's non-trivial to make CRA app to work good from both root and a sub-directory. Whewn publishing app an application URL...

Indeed, there is a bug. Thanks for reporting it. Will release a patch shortly.

The demo/help app looks amazing! I've forked it and looking into it right now - that's a lot of code! :) I will also make sure it works with the...

The update. Your demo app works just fine with the latest [Pglet 0.5.7 Python library](https://pypi.org/project/pglet/0.5.7/). The only thing I changed was the way a new instance of `FormDemoApp` created on...

Yep, `Waiting for new app sessions. Press Enter to exit...` is [coming from Pglet](https://github.com/pglet/pglet-python/blob/main/pglet/pglet.py#L35-L37) meaning it's running and waiting for a new sessions to serve. I'm open to any suggestions...

Replit could be glitchy sometimes, indeed.

I've been thinking more about "components", i.e. something language-specific and made of atomic "controls" which are part of Pglet. So, your work would be called "Form component". I started working...

That's an interesting topic to discuss. [`Stack`](https://developer.microsoft.com/en-us/fluentui#/controls/web/stack) control is an implementation or "flexbox" layout which is sufficient in the most cases to implement page layout of any complexity. `Stack` reminds...

Just to check an idea I've quickly implemented `page.resize` (program above was updated with a real one). Take a look how it works: https://user-images.githubusercontent.com/5041459/146712281-0e20c22d-ebd6-4942-a1ac-4625d0691a2e.mov

I must say it looks nice :) Well, the main drawback of reacting on page resize event though it's layout readraw latency. Why would you need the size of container?...