When I click on the PickerField for Uranium in Windows for the first time, all the options appear and occupy the entire field. However, when I click a second time, the selection area decreases in size, and I the options shows only if I click very close to the label.
First attempt (The picker shows items if you click anywhere in the PickerField.)
Other attempts (The picker shows items if you click very close to the title. However, if you click on the title or farther away, the options do not appear.)
When I click on the PickerField for Uranium in Windows for the first time, all the options appear and occupy the entire field. However, when I click a second time, the selection area decreases in size, and I the options shows only if I click very close to the label.
First attempt (The picker shows items if you click anywhere in the PickerField.)
Other attempts (The picker shows items if you click very close to the title. However, if you click on the title or farther away, the options do not appear.)
Xml Code
`<?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui" x:Class="MyUraniumProject.MainPage" Shell.NavBarHasShadow="True" xmlns:material="http://schemas.enisn-projects.io/dotnet/maui/uraniumui/material"
`
CodeBehind `namespace MyUraniumProject { public partial class MainPage : ContentPage { public ObservableCollection List { get; set; }
}`