Flatout Electric
When in doubt flatoutelectric@gmail.com
.NET MAUI
Getting Started
This is a good YouTube video for understanding how to create an basic app which can to utilized on iOS or Android devices.
.NET MAUI Tutorial for Beginners
There is an issue with the generic example within VStudio, adding the following line to the csproj file ProperyGroup section should resolve the issue.
<WindowsAppSdkDeploymentManagerInitialize>false</WindowsAppSdkDeploymentManagerInitialize>
Note that iOS app can be test as a windows app during this process, but testing or loading onto an iOS device requires an Apple Developer Program (approx. $100/year). For Android there is a built in emulator.
Graphs and Charts
This is a good YouTube video for understanding Microcharts.
Visualize Your Data with Charts in .NET MAUI
Useful NuGet Packages
CommunityToolKit.Mvvm
Structures
ContentPage (page.xaml )
<ScrollView>
<VerticalStackLayout
<Grid Grid.Row="0"
RowDefinitions="*"
ColumnDefinitions="*,*,*">
<Image
Grid.Row="0"
Grid.Column="0" />
</Grid>
<Image />
<Label />
<Button />
</VerticalStackLayout>
</ScrollView>