I trying implement the edit feature from the samples. https://developers.arcgis.com/net/forms/sample-code/edit-features-with-feature-linked-annotation/
But cannot get it work. Shows me error in XAML code at <resources:ResponsiveFormContainer ....
Below is the XAML code.
xmlns:resources="clr-namespace:Forms.Resources;assembly=ArcGISRuntime"
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Xamarin.Forms"
x:Class="FarmAppTest.Views.EditFeature">
<RelativeLayout>
<esriUI:MapView
x:Name="MyMapView"
BindingContext="{x:Reference Name=ResponsiveFormContainer}"
GeoViewTapped="MyMapView_GeoViewTapped"
Style="{StaticResource MapWithFormStyle}" />
<resources:ResponsiveFormContainer x:Name="ResponsiveFormContainer">
Error
Error CS0400 The type or namespace name 'Forms' could not be found in the global namespace (are you missing an assembly reference?)
What am I missing?