Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Paths are either not shown or shown not as in the UWP Designer #2

Closed
danielkornev opened this issue May 7, 2018 · 3 comments
Closed
Labels
kind/bug Something isn't working platform/wasm 🌐 Categorizes an issue or PR as relevant to the WebAssembly platform

Comments

@danielkornev
Copy link

image

Example code:
<ToggleButton Grid.Row="4" x:Name="buttonShowSettings" Width="236" Height="50" VerticalAlignment="Top" HorizontalContentAlignment="Left" BorderBrush="Transparent" BorderThickness="0,1,1,1" Padding="0" Background="#FFF3F3F3" Visibility="Visible"> <StackPanel Orientation="Horizontal"> <Grid Width="50" Height="50"> <Path Stretch="Uniform" Fill="Gray" Width="20" Height="20" Margin="0,0,0,0" RenderTransformOrigin="0.5,0.5" Data="M16.000015,9.6000061C12.500012,9.6000061 9.5999844,12.5 9.5999844,16 9.5999844,19.5 12.500012,22.399994 16.000015,22.399994 19.500019,22.399994 22.400015,19.5 22.400015,16 22.400015,12.5 19.500019,9.6000061 16.000015,9.6000061z M14.199995,0L17.800005,0C18.199999,0,18.599993,0.29998779,18.599993,0.79998779L18.599993,4.7999878C19.900013,5.1000061,21.000019,5.6000061,22.099997,6.2999878L25.000023,3.3999939C25.099999,3.2999878 25.300011,3.1999817 25.500025,3.1999817 25.700007,3.1999817 25.900019,3.2999878 26.000025,3.3999939L28.600033,6C28.900021,6.2999878,28.900021,6.7999878,28.600033,7.1000061L25.700007,10C26.400019,11.100006,26.900019,12.299988,27.200007,13.5L31.20001,13.5C31.600037,13.5,31.999998,13.799988,31.999998,14.299988L31.999998,17.899994C31.999998,18.299988,31.700012,18.699982,31.20001,18.699982L27.200007,18.699982C26.900019,20,26.400019,21.100006,25.700007,22.199982L28.600033,25.100006C28.700009,25.199982 28.799984,25.399994 28.799984,25.600006 28.799984,25.799988 28.700009,26 28.600033,26.100006L26.000025,28.600006C25.900019,28.699982 25.700007,28.799988 25.500025,28.799988 25.300011,28.799988 25.099999,28.699982 25.000023,28.600006L22.099997,25.699982C21.000019,26.399994,19.800007,26.899994,18.599993,27.199982L18.599993,31.199982C18.599993,31.600006,18.300005,32,17.800005,32L14.199995,32C13.8,32,13.400006,31.699982,13.400006,31.199982L13.400006,27.199982C12.099987,26.899994,11.000011,26.399994,9.9000027,25.699982L7.0000064,28.600006C6.9000003,28.699982 6.6999881,28.799988 6.5000059,28.799988 6.2999937,28.799988 6.099981,28.699982 6.0000054,28.600006L3.3999967,26C3.0999784,25.699982,3.0999784,25.199982,3.3999967,24.899994L6.2999937,22C5.5999805,20.899994,5.0999801,19.699982,4.7999923,18.5L0.79998828,18.5C0.39999409,18.5,-1.933513E-07,18.199982,0,17.699982L0,14.100006C-1.933513E-07,13.699982,0.2999879,13.299988,0.79998828,13.299988L4.7999923,13.299988C5.0999801,12,5.5999805,10.899994,6.2999937,9.7999878L3.3999967,7C3.2999908,6.8999939 3.1999845,6.6999817 3.1999845,6.5 3.1999845,6.2999878 3.2999908,6.1000061 3.3999967,6L6.0000054,3.3999939C6.099981,3.2999878 6.2999937,3.1999817 6.5000059,3.1999817 6.6999881,3.1999817 6.9000003,3.2999878 7.0000064,3.3999939L9.9000027,6.2999878C11.000011,5.6000061,12.199993,5.1000061,13.400006,4.7999878L13.400006,0.79998779C13.400006,0.29998779,13.8,0,14.199995,0z"> <Path.RenderTransform> <TransformGroup> <TransformGroup.Children> <RotateTransform Angle="0" /> <ScaleTransform ScaleX="1" ScaleY="1" /> </TransformGroup.Children> </TransformGroup> </Path.RenderTransform> </Path> </Grid> <TextBlock Width="186" VerticalAlignment="Center" FontSize="14"><Run Text="Settings" /></TextBlock> </StackPanel> </ToggleButton>

@carldebilly
Copy link
Member

It's a known problem already in our internal backlog. Thanks for reporting, I'll link them together and I'll try to come back soon with an ETA for the fix.

@danielkornev
Copy link
Author

Any news?

@carldebilly carldebilly added kind/bug Something isn't working platform/wasm 🌐 Categorizes an issue or PR as relevant to the WebAssembly platform labels Dec 23, 2018
NicolasChampagne added a commit that referenced this issue Jul 23, 2019
# This is the 1st commit message:

Fix to projitems files

# This is the commit message #2:

added suggestions from code review

# This is the commit message #3:

Added a class for DependencyProperty.UnsetValue

fix wip

# This is the commit message #4:

Fix to remove the "collection changed" exception

# This is the commit message #5:

DataContext were considered valid when set to "UnsetValue"
Was causing a problem on Android when coming back from background, the DataContext is briefly set to UnsetValue, causing DependencyProperties to change to their default value.

# This is the commit message #6:

Fixed exception when using ExponentialEase on Android

# This is the commit message #7:

Removed useless setting of DataContext in a "reload" scenario.
This was mostly happening on Android when the application is coming back from background.

# This is the commit message #8:

Reverted IShadowChildrenProvider to use the List<T> type
dr1rrb pushed a commit that referenced this issue Aug 26, 2019
dr1rrb pushed a commit that referenced this issue Aug 29, 2019
dr1rrb pushed a commit that referenced this issue Sep 6, 2019
dr1rrb pushed a commit that referenced this issue Sep 30, 2019
dr1rrb pushed a commit that referenced this issue Sep 30, 2019
dr1rrb pushed a commit that referenced this issue Oct 1, 2019
dr1rrb pushed a commit that referenced this issue Oct 2, 2019
dr1rrb pushed a commit that referenced this issue Oct 3, 2019
@carldebilly
Copy link
Member

carldebilly commented Oct 3, 2019

I think this problem has been fixed a while ago.
It works!
https://playground.platform.uno/#47fc71cd

Please reopen if you still have a problem with it.

lukeblevins pushed a commit to lukeblevins/uno that referenced this issue Jan 17, 2024
* chore: added original Maui.Resizetizer.targets

* fix: removed generated compiled bins from solution

* fix: removing built files

* fix: Referencing original maui targets file

* fix: build for sample app

Co-authored-by: Nick Randolph <nick@builttoroam.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Something isn't working platform/wasm 🌐 Categorizes an issue or PR as relevant to the WebAssembly platform
Projects
None yet
Development

No branches or pull requests

3 participants