From 53b73ef8defcf0a0290ae333c82be821cbc8d8a8 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Tue, 12 Jan 2021 10:10:39 +0100 Subject: [PATCH 1/2] bump version --- example/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 16bc8108..4719a6e5 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.0.113+116 +version: 1.1.0 environment: sdk: ">=2.2.2 <3.0.0" From 81589778fae7d4c3c990765f0fb65c5dac457e70 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Tue, 12 Jan 2021 10:33:18 +0100 Subject: [PATCH 2/2] fix gihpy dark mode --- example/pubspec.yaml | 2 +- lib/src/giphy_attachment.dart | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 4719a6e5..cdc07de7 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.1.0 +version: 1.1.0+1 environment: sdk: ">=2.2.2 <3.0.0" diff --git a/lib/src/giphy_attachment.dart b/lib/src/giphy_attachment.dart index c879cd5b..df5a5705 100644 --- a/lib/src/giphy_attachment.dart +++ b/lib/src/giphy_attachment.dart @@ -45,6 +45,7 @@ class GiphyAttachment extends StatelessWidget { mainAxisSize: MainAxisSize.min, children: [ Card( + color: StreamChatTheme.of(context).colorTheme.white, elevation: 2, clipBehavior: Clip.antiAlias, shape: RoundedRectangleBorder( @@ -160,6 +161,7 @@ class GiphyAttachment extends StatelessWidget { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Card( + color: Colors.white, elevation: 2, child: IconButton( padding: const EdgeInsets.all(0), @@ -187,6 +189,7 @@ class GiphyAttachment extends StatelessWidget { ), ), Card( + color: Colors.white, elevation: 2, child: IconButton( padding: const EdgeInsets.all(0),