[Enhancement] MAUI Controls Gallery #183
Replies: 3 comments 1 reply
-
Let's do it! Let's discuss. What makes for a really good control gallery? |
Beta Was this translation helpful? Give feedback.
-
If MAUI is really multi-platform, we can create similar application for Windows(using Project Reunion), Android and IOS. MVVM: <StackLayout>
<Label Text="Welcome to .NET MAUI!" />
<Button Text="{Binding Text}"
Command="{Binding ClickCommand}" />
</StackLayout> And MVU: [Body]
View body() => new StackLayout
{
new Label("Welcome to .NET MAUI!"),
new Button(
() => $"You clicked {count} times.",
() => count.Value ++)
)
}; And I also think, it will be cool to create few quality design templates. For example: To-Do List, Weather Forecast, News application. |
Beta Was this translation helpful? Give feedback.
-
Having some app samples that use the controls in various scenarios would also be helpful. Especially for new developers, to see how they all work together. Something similar that Compose has https://github.com/android/compose-samples |
Beta Was this translation helpful? Give feedback.
-
Create open source MAUI Controls Gallery
I think it'll be useful to create MAUI Controls Gallery, similar to XAML Controls Gallery.
It's difficult to start with new technologies for new developers. And projects, like controls gallery are incredible useful for that.
Beta Was this translation helpful? Give feedback.
All reactions