Relative Content

Tag Archive for c#.netmaui

Problem binding Native iOS facebook library in .net maui

I am trying to use the native ios facebook sdk with .net maui binding in my application. I followed the instructions from the following video from dotnet’s youtube channel https://www.youtube.com/watch?v=BpE6aV3lHC0. I copied the exact code from the project and when I try to build that I get an error saying “Unable to find package CommunityToolkit.Maui.NativeLibraryInterop.BuildTasks. No packages exist with this id in source(s): /usr/local/share/dotnet/library-packs, nuget.org”.

TextColor being ignored for entry field in .NET MAUI

I have an entry field in .NET MAUI and I have set the TextColor in the XAML file. However, when Text is dynamically loaded into the field, the TextColor automatically goes to Black. I understand that this is because I have set the UITheme of my app to be Light constantly and the default text colour for white would be black. However, I can not find a workaround as to how I can modify this so that the UItheming just for this specific content page is not applied or alternatively set this specific content page to use the dark theme.

Multi-Collection Views – Display .NET MAUI CollectionView within a CollectionView

I am developing a c# .NET Maui application that creates a bowling app that maintains a recap of scores for bowling team. The requirements are that it is a general application that supports leagues that have bowlers that are supporting 2 to many team members. In addition, the amount of games per match can support multiple games based on league rules. Typically, most leagues have a 3 game requirenment for each bowler but there are leagues that support more than 3. Bottom line, there is a requirement to support 2 to many bowlers with 1 to many games.