This commit is contained in:
Christian Pauly 2020-01-18 13:28:56 +01:00
parent d0350963cb
commit cccbd7557e
2 changed files with 1 additions and 2 deletions

View File

@ -356,7 +356,7 @@ class MatrixState extends State<Matrix> {
@override
void initState() {
if (widget.client == null) {
client = Client(widget.clientName, debug: true);
client = Client(widget.clientName, debug: false);
if (!kIsWeb) {
_initWithStore();
} else {

View File

@ -7,7 +7,6 @@ extension StringColor on String {
number += this.codeUnitAt(i);
}
number = (number % 10) * 25.5;
print(number);
return HSLColor.fromAHSL(1, number, 1, 0.35).toColor();
}
}