Fix public key text color
This commit is contained in:
parent
50e4190792
commit
8afa93e805
|
@ -133,7 +133,8 @@ class _ChatEncryptionSettingsState extends State<ChatEncryptionSettings> {
|
||||||
deviceKeys[i]
|
deviceKeys[i]
|
||||||
.keys["ed25519:${deviceKeys[i].deviceId}"]
|
.keys["ed25519:${deviceKeys[i].deviceId}"]
|
||||||
.beautified,
|
.beautified,
|
||||||
style: TextStyle(color: Colors.black),
|
style: TextStyle(
|
||||||
|
color: Theme.of(context).textTheme.body1.color),
|
||||||
),
|
),
|
||||||
value: deviceKeys[i].verified,
|
value: deviceKeys[i].verified,
|
||||||
onChanged: (bool newVal) {
|
onChanged: (bool newVal) {
|
||||||
|
|
Loading…
Reference in a new issue