我正在使用Xamarin.Forms中的新Shapes功能。我正在尝试裁剪图像:
function currentloginid() {
fetch('http://localhost/gaq/api/api.php?action=userid', {
method: 'GET',
}
)
.then(function(response) {
response.json().then(function(data) {
var userid = JSON.parse(data);
console.log(userid);
return userid;
})
})
}
但是几何形状太大了;所以我需要缩放/移动几何。可能吗? 谢谢