This commit is contained in:
rustdesk
2023-01-11 18:49:06 +08:00
parent 9e9d6fa002
commit 878111f32d

View File

@@ -983,7 +983,7 @@ Widget getPlatformImage(String platform, {double size = 50}) {
platform != kPeerPlatformAndroid) {
platform = 'win';
} else {
platform = 'linux';
platform = platform.toLowerCase();
}
return SvgPicture.asset('assets/$platform.svg', height: size, width: size);
}