android icon

This commit is contained in:
csf 2022-04-14 15:44:33 +08:00
parent da4fc7f906
commit 8823c4f785
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

@ -188,7 +188,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);
}