From 63e9a25ca538c4ac1c0a0af6291c777712773e9b Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 16 Feb 2020 20:35:08 +0100 Subject: [PATCH] Fix analyzer --- lib/components/reply_content.dart | 2 +- lib/views/chat.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/reply_content.dart b/lib/components/reply_content.dart index 8d6e6882..3c63648b 100644 --- a/lib/components/reply_content.dart +++ b/lib/components/reply_content.dart @@ -43,7 +43,7 @@ class ReplyContent extends StatelessWidget { style: TextStyle( color: lightText ? Colors.white - : Theme.of(context).textTheme.bodyText1.color), + : Theme.of(context).textTheme.body1.color), ), ], ), diff --git a/lib/views/chat.dart b/lib/views/chat.dart index 805198a8..989aa719 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -381,7 +381,7 @@ class _ChatState extends State<_Chat> { child: Icon(Icons.arrow_downward, color: Theme.of(context).primaryColor), onPressed: () => _scrollController.jumpTo(0), - foregroundColor: Theme.of(context).textTheme.bodyText1.color, + foregroundColor: Theme.of(context).textTheme.body1.color, backgroundColor: Theme.of(context).scaffoldBackgroundColor, mini: true, ),