version update

This commit is contained in:
2021-07-29 10:02:05 +08:00
parent 23b1ad7512
commit 23202abd98
221 changed files with 11914 additions and 3706 deletions
View File
View File
View File
+1 -1
View File
@@ -76,7 +76,7 @@ namespace Pixiview.Droid.Renderers
float scale = density;
double width = (double)element.GetValue(VisualElement.WidthProperty) * scale;
double height = (double)element.GetValue(VisualElement.HeightProperty) * scale;
Rect rect = new Rect(0, 0, (int)width, (int)height);
var rect = new Android.Graphics.Rect(0, 0, (int)width, (int)height);
outline.SetRoundRect(rect, radius);
}
}
View File
View File
View File
View File
View File
View File
View File
View File