TheEthicalBoy

Results 28 issues of TheEthicalBoy

### Discussed in https://github.com/flet-dev/flet/discussions/2799 Originally posted by **ingdesarr1** March 4, 2024 Good afternoon. It would be very useful if the alignment properties could be used within the Stack, to facilitate...

good first issue
controls
feature request

- [ ] PR Template - [ ] Update the contribution guide - [ ] ...

documentation

- [x] `CupertinoTextField` - [ ] `CupertinoButton` - [ ] `CupertinoListTile`

Closes #1193 ### Test Code: TBA

- New methods in some controls: `add()`, `remove()`, `insert()` - If `Control.auto_update=True`, then changing any property of the control should internally trigger `Control.update()` TBD: - [ ] Add `auto_update` prop...

Closes #848 Test Code: ```py import flet as ft def main(page: ft.Page): page.add( ft.AutoFillGroup( ft.Column( controls=[ ft.TextField( label="Name", autofill_hints=ft.AutoFillHint.NAME, ), ft.TextField( label="Email", autofill_hints=[ft.AutoFillHint.EMAIL], ), ft.TextField( label="Phone Number", autofill_hints=[ft.AutoFillHint.TELEPHONE_NUMBER], ), ft.TextField(...

- [x] Regression in `LineChartData` colors caused by #2882

- [ ] Handling different States

Closes #791 Test Code: ```py import flet as ft def main(page: ft.Page): page.add( ft.AutoComplete( suggestions=[ ft.AutoCompleteSuggestion(key="one 1", value="One"), ft.AutoCompleteSuggestion(key="two 2", value="Two"), ft.AutoCompleteSuggestion(key="three 3", value="Three"), ], on_select=lambda e: print(e.selection), ) )...

Fixes #3532 ## Summary by Sourcery This pull request addresses parsing issues in multiple event classes by using the `get` method for dictionary access to handle missing keys. Additionally, it...