feat: make gesture editable.

This commit is contained in:
2021-10-13 01:02:47 +08:00
parent 1797ea1d5d
commit 6df7543262
5 changed files with 156 additions and 170 deletions
-1
View File
@@ -103,7 +103,6 @@ class H {
var list = inp.split(',');
if (list.length != 4) return null;
var rgba = list.map<int>((e) => int.parse(e) ~/ 257).toList();
rgba.sout();
return Color.fromARGB(rgba[3], rgba[0], rgba[1], rgba[2]);
}
}