Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

15 rindas
627 B

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:local="clr-namespace:HybridApp"
  5. x:Class="HybridApp.MainPage"
  6. BackgroundColor="{DynamicResource PageBackgroundColor}">
  7. <BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">
  8. <BlazorWebView.RootComponents>
  9. <RootComponent Selector="#app" ComponentType="{x:Type local:Components.Routes}" />
  10. </BlazorWebView.RootComponents>
  11. </BlazorWebView>
  12. </ContentPage>