-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: Exception when using .SetLocaleAsync with LocaleResource in MAUI #578
Comments
Ok, PR is out. I needed to change some internal stuff to public. If this is not desirable an alternative would be to abstract the Will need an updated or secondary |
Hi, I accepted the PR but I realize that I probably misunderstood the issue a bit. I understand that in MAUI it is not possible to use the httpClient in the chart service. Sorry if I'm missing something obvious here. |
Yes, the local filesystem is the way to go. As far as I know this needs to be done by This is why I placed it into a separate project, so there are no new dependencies on the main package. Then the release.yml file could be updated to create a secondary package which would be the recommended package for anyone running MAUI as it will contain the main one as well. I can do another PR for the changes to the script but it should be pretty easy. Just add the |
Thank you, makes sense. Let me get back you on the changes for the nuget script. I will now remove support for .NET 6 and .NET 7 and add support .NET 9. |
Very simple error here, simply put MAUI does not support reading content via
HttpClient
; using something likeFileSystem
will work. Going to get a PR out for this in an hour or two but you'll need to let me know what you think. My plan is to do the following:IApexChartService
public static IServiceCollection AddApexChartsMaui
Here is the code to produce.
For reference, here is the error from MAUI logs.
The text was updated successfully, but these errors were encountered: