Hello,
I try to setup starterkit for Blazor Metronic 8.2.6, and I am facing an issue in that.
1. I am unable to find the switch to change the theme from light mode to dark mode.
2. I am trying to include external JS, CSS files that are also not working.
I am trying to add syncfusion controls and for that I need to add that CSS and JS
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
3. I saw the Blazor project is on .net 7 but when I asked on commect section, I got a reply for .net 8.0 . Is there any other project which is on .net8.0 as I need to work with .net8.0 web app or server app not with .net 7.0 Blazor project.
Please help me to get sol;ution for above questions.
I am expecting a working solution, if your team is not able to provide then in that case let me know I can take a refund as it will be not useful for me in .NET 7.0, I am looking for
Blazor .NET 8.0 Web App.
Also tried to add syncfusion and this provided bootstrap file is different from the provided one. Can you also guide me for that where to add this new syncfusion bootstrap file as there will be two files for light and dark mode. And if you have any documents for that please share that .
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
If Blazor is based on .NET 7, then it's completely waste for me.
What can we expect from the upcoming .NET 8 version?
Please also mention clearly on the selling page that it on .NET 7 as it creates misunderstanding and I bought the wrong product.
Hi,
Sorry for the misleading info. Noted, we will put this info clearly.
If the current Metronic Blazor is not usable for you you can request a refund using this form.
If you wish to continue using it then we will do our best to help you out further.
Regards.
Hi,
Thank you for reaching out to us.
1. The mode-switching partial instance is missing in Partials/SidebarLayout/Header/_Navbar.razor, to fix it you can add a switch button as shown below.
<!--begin::Theme mode-->
@if(KTTheme.IsModeSwitchEnabled()){
<div class="app-navbar-item ms-2 ms-lg-4">
<_Main></_Main>
</div>
}
<!--end::Theme mode-->