mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-12 05:31:30 +03:00
backgroundcolor migration
This commit is contained in:
@@ -75,7 +75,8 @@ class ChatPage extends StatelessWidget implements PageShape {
|
||||
hintText:
|
||||
"${translate('Write a message')}...",
|
||||
filled: true,
|
||||
fillColor: Theme.of(context).backgroundColor,
|
||||
fillColor:
|
||||
Theme.of(context).colorScheme.background,
|
||||
contentPadding: EdgeInsets.all(10),
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(6),
|
||||
@@ -88,7 +89,8 @@ class ChatPage extends StatelessWidget implements PageShape {
|
||||
: defaultInputDecoration(
|
||||
hintText:
|
||||
"${translate('Write a message')}...",
|
||||
fillColor: Theme.of(context).backgroundColor),
|
||||
fillColor:
|
||||
Theme.of(context).colorScheme.background),
|
||||
sendButtonBuilder: defaultSendButton(
|
||||
padding: EdgeInsets.symmetric(
|
||||
horizontal: 6, vertical: 0),
|
||||
|
||||
Reference in New Issue
Block a user