有点奇怪。我已经在Xamarin Forms(Shell)中构建了一个应用程序,并且在Android上一切正常。当我在ios(iPhone 11物理设备)中导航到新页面时,屏幕似乎弹出并调整大小。我认为这与视图中使用的安全区域属性有关,因为它似乎位于安全区域中,然后调整大小到安全区域中,所以发生的速度有点太慢。
对Android没有影响。
我无法在新项目中重新创建,但是我当前的项目有大量的时间投入,并且我不想再次开始...我无法适应现有的项目,问题仍然存在。
下面是一些示例代码,但奇怪的是,它似乎可以在新项目中工作,因此我正在寻找有关在其他地方设置调试该问题的指南。有什么想法吗?可以根据需要提供其他代码示例。
我已经尝试过升级和降级软件包等。
包裹
我使用
导航 private async Task ExecuteAddPageCommand()
{
await PushAsync(new AddPagePage());
}
PushAsync在我的baseview模型中
public async Task<bool> PushAsync(Page page)
{
try
{
await Shell.Current.Navigation.PushAsync(page);
return true;
}
catch
{
await Shell.Current.GoToAsync(Utilities.Routes.ErrorModalPage);
return false;
}
}
页面具有标准属性(示例)
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core"
ios:Page.UseSafeArea="true"
Visual="Material"
x:Class="namespace:Thing.Views.AddPage"
xmlns:converter="clr-namespace:Thing.Converters"
xmlns:controls="clr-namespace:Thing.Controls"
xmlns:utilities="clr-namespace:Thing.Utilities"
>
<ContentPage.Resources>
<ResourceDictionary>
<converter:IntToEnumConverter x:Key="IntToEnum"/>
<converter:InverseBoolConverter x:Key="InverseBool"/>
</ResourceDictionary>
</ContentPage.Resources>
<ContentPage.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="5*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<controls:PageHeader Grid.Row="0" ShowBackButton="true"
HeaderTitle="New Thing"
HeaderImage="{x:Static utilities:Icons.AddMenuIcon}"
BackCommand="{Binding NavigateBackCommand}"/>
<StackLayout Grid.Row="1">
<Label Text="What do you want to call this?" Style="{StaticResource FormLabel}"/>
<Entry Text="{Binding Name.Value}" Placeholder="E.g. My shiny thing"/>
</StackLayout>
<StackLayout Grid.Row="2" Orientation="Horizontal">
<Button HorizontalOptions="FillAndExpand" Text="Cancel" Command="{Binding NavigateBackCommand}"></Button>
<Button HorizontalOptions="FillAndExpand" Text="Save" Command="{Binding SaveCommand}"></Button>
</StackLayout>
</Grid>
</ContentPage.Content>
</ContentPage>
答案 0 :(得分:0)
我遇到了完全相同的问题,并且更新到最新版本(4.8.1269)并没有帮助。似乎此问题是在4.7.1260中引入的。我降级到4.7.1239,一切都恢复了。