android icon

This commit is contained in:
rustdesk 2022-04-14 14:22:16 +08:00
parent 73f652cad1
commit 98314131c4
2 changed files with 1 additions and 1 deletions

BIN
assets/android.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -192,7 +192,7 @@ class _ConnectionPageState extends State<ConnectionPage> {
platform = platform.toLowerCase();
if (platform == 'mac os')
platform = 'mac';
else if (platform != 'linux') platform = 'win';
else if (platform != 'linux' && platform != 'android') platform = 'win';
return Image.asset('assets/$platform.png', width: 24, height: 24);
}