Xamarin Forms プロジェクトを作成しました。私のプロジェクトには次の XAML があります。
<CarouselPage>
<ContentPage>
<StackLayout>
<Label Text="Red" />
<BoxView Color="Red" VerticalOptions="FillAndExpand" />
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout>
<Label Text="Green" />
<BoxView Color="Green" VerticalOptions="FillAndExpand" />
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout>
<Label Text="Blue" />
<BoxView Color="Blue" VerticalOptions="FillAndExpand" />
</StackLayout>
</ContentPage>
</CarouselPage>
現在、カルーセル ページは次のプラットフォームで動作します。
UWP-ローカルマシン
Windows 8.1 - ローカルマシン
Android - エミュレーター
次のプラットフォームでは機能しません。
UWP - デバイス (モバイル)
WinPhone (WinPhone 8.1) - デバイス (モバイル)
電話でのスワイプ ジェスチャは認識されません。これを解決するにはどうすればよいですか?