From 55021fc5d9e25fe7759f58a1e077943fd276eac0 Mon Sep 17 00:00:00 2001 From: grummbeer Date: Fri, 17 Mar 2023 17:05:28 +0100 Subject: [PATCH] Unify Input. Remove hardcoded style (change id) --- flutter/lib/common/widgets/dialog.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/flutter/lib/common/widgets/dialog.dart b/flutter/lib/common/widgets/dialog.dart index 83be522fa..f30ada81e 100644 --- a/flutter/lib/common/widgets/dialog.dart +++ b/flutter/lib/common/widgets/dialog.dart @@ -106,7 +106,6 @@ void changeIdDialog() { TextField( decoration: InputDecoration( labelText: translate('Your new ID'), - border: isDesktop ? const OutlineInputBorder() : null, errorText: msg.isEmpty ? null : translate(msg), suffixText: '${rxId.value.length}/16', suffixStyle: const TextStyle(fontSize: 12, color: Colors.grey)),