Benit Mulindwa

Results 8 comments of Benit Mulindwa

Meanwhile you can check this out: https://github.com/benitmulindwa/flet_canvas2img

Good stuff @ndonkoHenri 😎! But i have some questions, are we going to get the *run_javascripts()* methods support on other platforms soon? I thought this PR would add WV support...

Would be great to have the *run_javascripts()* method on Web too Edit: Am not able to update the *url* value when running on web. Is it a bug or that’s...

Am able to change the *url* value outside of a function,… but once am inside a function/eventhandler an error is shown saying that the method is supported on Android, iOS...

@ndonkoHenri all right lemme do it

I've found a way around this,... the issue is from the default value of `first_date` property which is year 1900. This error is known and it's from the python datetime...

```python import datetime import flet as ft def main(page: ft.Page): page.horizontal_alignment = ft.CrossAxisAlignment.CENTER def handle_change(e: ft.Event[ft.DateRangePicker]): page.add( ft.Text(f"Start: {e.control.start_value.strftime('%m/%d/%Y')}", color=ft.Colors.AMBER_700), ft.Text(f"End: {e.control.end_value.strftime('%m/%d/%Y')}", color=ft.Colors.BLUE_700), ) def handle_dismissal(e: ft.Event[ft.DialogControl]): page.add(ft.Text("DatePicker dismissed")) today...