Revert "ant design (WIP)"

This reverts commit 7ed00cf42d.
This commit is contained in:
Tobias Wohlleben 2024-09-06 15:19:18 +02:00
parent 7ed00cf42d
commit ff34fe0d0a
8 changed files with 3 additions and 15 deletions

View File

@ -15,10 +15,9 @@ namespace RBLNews.Maui
});
builder.Services.AddMauiBlazorWebView();
builder.Services.AddAntDesign();
#if DEBUG
builder.Services.AddBlazorWebViewDeveloperTools();
builder.Services.AddBlazorWebViewDeveloperTools();
builder.Logging.AddDebug();
#endif

View File

@ -3,5 +3,3 @@
<h1>Hello, world!</h1>
Welcome to your new app.
<Button Type="primary">Hello World from ANT CSS!</Button>

View File

@ -3,4 +3,4 @@
<RouteView RouteData="@routeData" DefaultLayout="@typeof(Layout.MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
</Router>
</Router>

View File

@ -12,7 +12,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="AntDesign" Version="0.20.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.8" />
</ItemGroup>

View File

@ -1,4 +1 @@
@* ANT CSS DESIGN IMPORT -------------------- *@
@using AntDesign
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web

View File

@ -13,7 +13,6 @@
<body>
<Routes @rendermode="InteractiveServer" />
<AntContainer @rendermode="RenderMode.InteractiveAuto" />
<script src="_framework/blazor.web.js"></script>
</body>

View File

@ -2,9 +2,6 @@
@using RBLNews.Shared
@using RBLNews.Shared.Components
@* ANT CSS DESIGN IMPORT -------------------- *@
@using AntDesign
@* DEFAULT IMPORTS -------------------------- *@
@using System.Net.Http
@using System.Net.Http.Json

View File

@ -5,7 +5,6 @@ var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddAntDesign();
var app = builder.Build();