MaxXilon
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 😊.   **Image** -...