Relative Content

Tag Archive for c#.netmaui

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.