1

我创建了一个 Xamarin Android Shell 应用程序。所有标签和条目都是空白颜色,并且在我将其更改为黑色或其他颜色之前不会显示在 android 设备上。下面是登录页面的代码片段。

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="VaxineApp.Views.Login.LoginPage"
             xmlns:local="clr-namespace:VaxineApp.Renderers"
             Shell.FlyoutBehavior="Disabled"
             Shell.NavBarIsVisible="False">
  <ContentPage.Content>
    <StackLayout Padding="40" VerticalOptions="Center" HorizontalOptions="FillAndExpand"> 
      <Label Text="Welcome to Login Page" />
      <Entry Placeholder="Email or Phone"></Entry>
      <Entry Placeholder="Password"></Entry>
      <Button Text="Sign in"></Button>
    </StackLayout>
  </ContentPage.Content>
</ContentPage>  

我不知道我是否遗漏了什么。这在我以前没有发生过。
看看这段代码如何在我的 Android 设备上呈现。
在此处输入图像描述

4

0 回答 0