You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit: Additional information: it depends on the exact combination of .net and UraniumUI.
A particular incompatibility seems introduced in UraniumUI 2.10.0:
TextField.ClearIcon:
DOES NOT SHOW: - .net9.0, UraniumUI nuget >=2.10.0 ( 2.10.0- 2.11.2 tested)
DOES SHOW - .net9.0, UraniumUI nuget <2.10.0 (2.7.4 - 2.9.1 tested)
DOES SHOW - .net8.0, UraniumUI latest nuget
TextField no longer shows ClearIcon when using net9.0
<VerticalStackLayout>
<LabelHorizontalOptions="Center"Text="Here, the first text field is not clearable:" />
<material:TextFieldTitle="Clearable TextField"AllowClear="True"Text="Test Text" />
<material:TextFieldTitle="Non-Clearable TextField"AllowClear="False"Text="Test Text" />
<LabelHorizontalOptions="Center"Text="For contrast, DatePicker is still clearable" />
<material:DatePickerFieldTitle="Clearable DatePicker"AllowClear="True" />
<material:DatePickerFieldTitle="Not-Clearable DatePicker"AllowClear="False" />
</VerticalStackLayout>
The text was updated successfully, but these errors were encountered:
Reproduction branch:
https://github.com/StepKie/MauiPlayground/tree/uranium/textfield-clear-861
To reproduce, start typing into the first text field (clear icon does not show at the start in either case when initial Text is set directly in xaml, which might be the desired behavior, not sure)
Edit: Additional information: it depends on the exact combination of .net and UraniumUI.
A particular incompatibility seems introduced in UraniumUI 2.10.0:
TextField.ClearIcon:
DOES NOT SHOW: - .net9.0, UraniumUI nuget >=2.10.0 ( 2.10.0- 2.11.2 tested)
DOES SHOW - .net9.0, UraniumUI nuget <2.10.0 (2.7.4 - 2.9.1 tested)
DOES SHOW - .net8.0, UraniumUI latest nuget
TextField no longer shows ClearIcon when using net9.0
Code for this:
The text was updated successfully, but these errors were encountered: