Skip to content

Commit

Permalink
Merge pull request #751 from unoplatform/dev/xygu/20220420/misc-fixes
Browse files Browse the repository at this point in the history
chore: add all opacity variants for brushes
  • Loading branch information
Xiaoy312 committed Apr 25, 2022
2 parents c585e07 + 8da5ade commit 271b21e
Show file tree
Hide file tree
Showing 5 changed files with 320 additions and 402 deletions.
2 changes: 1 addition & 1 deletion src/library/Uno.Cupertino/Styles/Controls/ComboBox.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
mc:Ignorable="xamarin">

<!-- Converters -->
<uc:FromNullToValueConverter x:Name="NullToVisible"
<uc:FromNullToValueConverter x:Key="NullToVisible"
NotNullValue="Collapsed"
NullValue="Visible" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:um="using:Uno.Material">

<um:FromBoolToValueConverter x:Name="MaterialTrueToVisible"
<um:FromBoolToValueConverter x:Key="MaterialTrueToVisible"
TrueValue="Visible"
FalseValue="Collapsed"
NullValue="Collapsed" />

<um:FromBoolToValueConverter x:Name="MaterialTrueToCollapsed"
<um:FromBoolToValueConverter x:Key="MaterialTrueToCollapsed"
TrueValue="Collapsed"
FalseValue="Visible"
NullValue="Visible" />
Expand Down Expand Up @@ -46,5 +46,5 @@

<um:StringFormatConverter x:Key="StringFormatConverter" />
<um:FirstCharacterConverter x:Key="FirstCharacterConverter" />

</ResourceDictionary>

0 comments on commit 271b21e

Please sign in to comment.