For the simple code below. I get error message that "Can't resolve resources: entryStyle" is it normal? ``` <ContentView.Resources> <ResourceDictionary> <Style x:Key="entryStyle" TargetType="Entry"> <Setter Property="HeightRequest" Value="50"/> <Setter Property="WidthRequest" Value="50"/> <Setter Property="Keyboard" Value="Numeric"/> <Setter Property="TextColor" Value="Black"/> <Setter Property="FontAttributes" Value="Bold"/> <Setter Property="FontSize" Value="Large"/> <Setter Property="BackgroundColor" Value="White"/> <Setter Property="PlaceholderColor" Value="Gray"/> </Style> </ResourceDictionary> </ContentView.Resources> <Entry Style="{StaticResource entryStyle}" ></Entry> ```
For the simple code below. I get error message that "Can't resolve resources: entryStyle" is it normal?