Skip to content

Commit

Permalink
3.0.13-beta - Added runInBackground parameter to AsyncEventCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
adospace committed Dec 30, 2024
1 parent e32c19d commit 63cea02
Show file tree
Hide file tree
Showing 69 changed files with 1,012 additions and 957 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
Solution_Name: ./src/MauiReactor.Build.sln
Test_Project: ./samples/UnitTests/UnitTests.csproj
TemplatePack_Name: ./src/MauiReactor.TemplatePack/MauiReactor.TemplatePack.csproj
Version: 3.0.12-beta
Version: 3.0.13-beta

steps:
- name: Checkout
Expand Down
288 changes: 144 additions & 144 deletions samples/MauiReactor.TestApp/HomePage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,153 +13,153 @@ public override VisualNode Render()
{
return new Shell
{
new FlyoutItem("Counter")
{
new CounterPage()
},
new FlyoutItem("Counter with service")
{
new CounterWithServicePage()
},
new FlyoutItem("Parameters")
{
new ParametersPage()
},
new FlyoutItem("CollectionView")
{
new CollectionViewPage()
},
new FlyoutItem("EditableCollectionView")
{
new EditableCollectionView()
},
new FlyoutItem("ListView")
{
new ListViewPage()
},
new FlyoutItem("ListView Extended Test")
{
new ListViewExtendedTestPage()
},
new FlyoutItem("AnimationBasics")
{
new AnimationBasics()
},
new FlyoutItem("CardsAnimation")
{
new CardsAnimationPage()
},
new FlyoutItem("CanvasCardsAnimationPage")
{
new CanvasCardsAnimationPage()
},
new FlyoutItem("Image")
{
new ImagePage()
},
new FlyoutItem("AnimatedCollectionView")
{
new AnimatedCollectionViewPage()
},
new FlyoutItem("AnimationShowcase")
{
new AnimationShowcasePage()
},
new FlyoutItem("AnimationLoop")
{
new AnimationLoopPage()
},
new FlyoutItem("Navigation")
{
new NavigationMainPage()
},
new FlyoutItem("ElementRef")
{
new ElementRefPage()
},
new FlyoutItem("Canvas")
{
new CanvasPage()
},
new FlyoutItem("Landscape")
{
new LandscapePage()
},
new FlyoutItem("GraphicsView")
{
new GraphicsViewPage()
},
new FlyoutItem("RemainingItemsThreshold Test")
{
new RemainingItemsThresholdTestPage()
},
new FlyoutItem("AnimatedButtonPage")
{
new AnimatedButtonPage()
},
new FlyoutItem("Border Corner Radius Test")
{
new BorderCornerRadiusPage()
},
new FlyoutItem("Show Popup Test")
{
new ShowPopupTestPage()
},
new FlyoutItem("Carousel Test")
{
new CarouselTestPage()
},
new FlyoutItem("Carousel with Images Test")
{
new CarouselTestWithImagesPage()
},
new FlyoutItem("Canvas AutoV/HStack Test")
{
new CanvasAutoStackPage()
},
new FlyoutItem("Inline components")
{
new InlineComponentsPage()
},
new FlyoutItem("Collection View Grouped")
{
new CollectionViewExtendedTestPage()
},
new FlyoutItem("Drag & Drop")
{
new DragDropTestPage()
},
//new FlyoutItem("Counter")
//{
// new CounterPage()
//},
//new FlyoutItem("Counter with service")
//{
// new CounterWithServicePage()
//},
//new FlyoutItem("Parameters")
//{
// new ParametersPage()
//},
//new FlyoutItem("CollectionView")
//{
// new CollectionViewPage()
//},
//new FlyoutItem("EditableCollectionView")
//{
// new EditableCollectionView()
//},
//new FlyoutItem("ListView")
//{
// new ListViewPage()
//},
//new FlyoutItem("ListView Extended Test")
//{
// new ListViewExtendedTestPage()
//},
//new FlyoutItem("AnimationBasics")
//{
// new AnimationBasics()
//},
//new FlyoutItem("CardsAnimation")
//{
// new CardsAnimationPage()
//},
//new FlyoutItem("CanvasCardsAnimationPage")
//{
// new CanvasCardsAnimationPage()
//},
//new FlyoutItem("Image")
//{
// new ImagePage()
//},
//new FlyoutItem("AnimatedCollectionView")
//{
// new AnimatedCollectionViewPage()
//},
//new FlyoutItem("AnimationShowcase")
//{
// new AnimationShowcasePage()
//},
//new FlyoutItem("AnimationLoop")
//{
// new AnimationLoopPage()
//},
//new FlyoutItem("Navigation")
//{
// new NavigationMainPage()
//},
//new FlyoutItem("ElementRef")
//{
// new ElementRefPage()
//},
//new FlyoutItem("Canvas")
//{
// new CanvasPage()
//},
//new FlyoutItem("Landscape")
//{
// new LandscapePage()
//},
//new FlyoutItem("GraphicsView")
//{
// new GraphicsViewPage()
//},
//new FlyoutItem("RemainingItemsThreshold Test")
//{
// new RemainingItemsThresholdTestPage()
//},
//new FlyoutItem("AnimatedButtonPage")
//{
// new AnimatedButtonPage()
//},
//new FlyoutItem("Border Corner Radius Test")
//{
// new BorderCornerRadiusPage()
//},
//new FlyoutItem("Show Popup Test")
//{
// new ShowPopupTestPage()
//},
//new FlyoutItem("Carousel Test")
//{
// new CarouselTestPage()
//},
//new FlyoutItem("Carousel with Images Test")
//{
// new CarouselTestWithImagesPage()
//},
//new FlyoutItem("Canvas AutoV/HStack Test")
//{
// new CanvasAutoStackPage()
//},
//new FlyoutItem("Inline components")
//{
// new InlineComponentsPage()
//},
//new FlyoutItem("Collection View Grouped")
//{
// new CollectionViewExtendedTestPage()
//},
//new FlyoutItem("Drag & Drop")
//{
// new DragDropTestPage()
//},

new FlyoutItem("Gradient Test")
{
new GradientPage()
},
//new FlyoutItem("Gradient Test")
//{
// new GradientPage()
//},

new FlyoutItem("Behavior Test")
{
new BehaviorTestPage()
},
//new FlyoutItem("Behavior Test")
//{
// new BehaviorTestPage()
//},

new FlyoutItem("Pickers Page")
{
new PickerPage()
},
new FlyoutItem("Visual State Test Page")
{
new VisualStateTestPage()
},
new FlyoutItem("FormattedText Test Page")
{
new FormattedTextTestPage()
},
new FlyoutItem("Theming Test Page")
{
new ThemeTestPage()
},
new FlyoutItem("CollectionView Multiple Selection Test Page")
{
new CollectionViewSelectionPage()
},
//new FlyoutItem("Pickers Page")
//{
// new PickerPage()
//},
//new FlyoutItem("Visual State Test Page")
//{
// new VisualStateTestPage()
//},
//new FlyoutItem("FormattedText Test Page")
//{
// new FormattedTextTestPage()
//},
//new FlyoutItem("Theming Test Page")
//{
// new ThemeTestPage()
//},
//new FlyoutItem("CollectionView Multiple Selection Test Page")
//{
// new CollectionViewSelectionPage()
//},
new FlyoutItem("Animating Label Test Page")
{
new AnimatingLabelTestPage()
Expand Down
10 changes: 7 additions & 3 deletions samples/MauiReactor.TestApp/MauiProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using MauiReactor.TestApp.Pages;
using MauiReactor.TestApp.Resources.Styles;
using Microsoft.Maui.Controls.Hosting;
using Microsoft.Extensions.Logging;

namespace MauiReactor.TestApp;

Expand All @@ -19,9 +20,12 @@ public static MauiApp CreateMauiApp()
})
.UseMauiCommunityToolkit();

builder.Services.AddSingleton<Services.IncrementService>();


builder.Services.AddSingleton<Services.IncrementService>();

#if DEBUG
builder.Logging.AddDebug().AddFilter(logLevel => logLevel >= LogLevel.Debug);
#endif

return builder.Build();
}
}
1 change: 1 addition & 0 deletions samples/MauiReactor.TestApp/MauiReactor.TestApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.21" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="9.0.21" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 63cea02

Please sign in to comment.