MaxXilon

Results 3 comments of MaxXilon

> Do you have a repro code for image issue? Here's a sample code: ``` import flet as ft imgsrc='./assets/deaf918056f442f1be15fadf7553cd63.png' def main(page): imgObj=ft.Image(src=imgsrc) img = ft.Container(content=ft.Row([imgObj,ft.Text('Image'),]), bgcolor="orange") page.add(img) ft.app(main) ```...

> @MaxXilon can you trying specifying the assets dir: https://flet.dev/docs/controls/image/#src I specified the assets dir here: ``` import flet as ft imgsrc='./assets/deaf918056f442f1be15fadf7553cd63.png' imgsrc2='./deaf918056f442f1be15fadf7553cd63.png' imgsrc3='/deaf918056f442f1be15fadf7553cd63.png' imgsrc4='deaf918056f442f1be15fadf7553cd63.png' def main(page): imgObj=ft.Image(src=imgsrc) imgObj2=ft.Image(src=imgsrc2) imgObj3=ft.Image(src=imgsrc3)...

> @MaxXilon the Flet mobile app has been updated. Can you update, retry and report? I just tested the updated app. **Connection** - Connection works 😊. ![Screenshot_20240311-135325.png](https://github.com/flet-dev/flet/assets/156061407/d9002a0d-bd14-4c08-9009-b516da931078) ![Screenshot_20240311-135336.png](https://github.com/flet-dev/flet/assets/156061407/06bbd15f-b589-4494-a3fe-4df27cf68878) **Image** -...