Christian Staudt

Results 120 issues of Christian Staudt

I am building a desktop app with flet, which depends on a couple of Python libraries. Pyinstaller works like a charm, however, the resulting app bundle on a Mac has...

```python def make_project_view(project: Project): return Card( content=Container( content=Column( [ ListTile( leading=Icon(icons.WORK), title=Text(project.title), subtitle=Text(project.tag), trailing=PopupMenuButton( icon=icons.WARNING, items=[ PopupMenuItem( icon=icons.EDIT, text="Edit", ), PopupMenuItem( icon=icons.DELETE, text="Delete", ), ], ) ), ] ), padding=10,...

"View is the top most container for all other controls." -- https://flet.dev/docs/controls/view "Page is a container for [View](https://flet.dev/docs/controls/view) controls." -- https://flet.dev/docs/controls/page From these documentation pages I did not get a...

![3df1321d2237e8f0ec612d1e3b9d9758](https://user-images.githubusercontent.com/875194/188834596-d974ca7c-332c-4c03-9c99-90261866e3fb.png) For an app to look and feel native on macOS, the menu bar needs to be filled with useful functions. I wasn't able to find something about the menu...

enhancement
controls
feature request

In my application I would like to display charts (built with Altair, e.g. https://altair-viz.github.io/gallery/simple_bar_chart.html). These charts are HTML/JS/CSS content. How can such content be shown in a flet app?

I am wondering whether flet supports building a desktop app that looks and feels more native on macOS.

Trying to package a simple demo app: ``` ╰─ pyinstaller counter.py (flet-test) 291 INFO: PyInstaller: 5.1 291 INFO: Python: 3.10.5 (conda) 320 INFO: Platform: macOS-12.5.1-arm64-i386-64bit 321 INFO: wrote /Users/cls/Documents/Work/Projects/PrototypeFund/Dev/flet-test/counter.spec 326...

Surprisingly the side bar menu is not shown when I run the same code (`examples/python/community/simple_desktop_layout`) on Linux: ![Screenshot from 2022-09-14 20-30-07](https://user-images.githubusercontent.com/875194/190235074-ea6e6d12-9f6c-423b-98d1-ae3e05167871.png)

Since this project looks like it is currently unmaintained (no issues or pull requests closed since February), we could watch it wither away, or we could maybe ask Apple to...

## The problem Previously running code based on pyicloud now fails on login. A HTTP error code 421 raises `PyiCloudAPIResponseException: Authentication required for Account. (421)`. However, macOS and Apple's security...