Closed jamesmontemagno closed 3 weeks ago
@jfversluis can you pull this and take a look as to why teh fontawesome icons aren't loading....
@jfversluis can you pull this and take a look as to why teh fontawesome icons aren't loading....
Tested on iOS, macOS and Android and it shows the icons there, so maybe just a fluke?
I do see a couple of
Microsoft.Maui.Controls.BindableObject: Warning: Cannot convert 6 to type 'System.Int32'
and one
Microsoft.Maui.Controls.BindableObject: Warning: Value is an invalid value for ColumnSpan
In the debug output, but can't really pinpoint where its coming from. Does that ring a bell?
was able to fix up the column span thing... nto srue about the "6" that is weird
It has to be somethign on the login page...
if i delete
<Button
Grid.Row="2"
Grid.Column="0"
Margin="8"
BackgroundColor="Black"
Command="{Binding SignInCommand}"
CornerRadius="16"
Text="Login"
TextColor="White" />
the warnings go away
PR Classification
Code cleanup and upgrade to .NET 9.0.
PR Summary
This pull request updates the project to target .NET 9.0, includes code cleanup, and updates package references.
App.xaml.cs
: OverriddenCreateWindow
method to return a newWindow
instance withAppShell
and updatedSetStatusBar
method.ClientApp.csproj
andHybridApp.csproj
: Target .NET 9.0 and updated package references.Basket.cs
: Improved protobuf parsing by handling end group tags.DialogService.cs
: Updated to useAppShell.Current.DisplayAlert
instead ofApplication.Current.MainPage.DisplayAlert
.SettingsViewModel.cs
: MadeTitleUseAzureServices
property non-static.