diff --git a/CHANGELOG.md b/CHANGELOG.md index 40292fb2..63725911 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 0.2.30 - Fix: Changed minimum threshold for the user discovery to 3 +- Fix: Multiple UI issues ## 0.2.28 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e8ca079f..1d5cf5b7 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -33,7 +33,7 @@ platform :android do # Load release notes from CHANGELOG.md changelog_path = File.expand_path("../CHANGELOG.md", __dir__) - release_notes = "Automated local release via Fastlane" + release_notes = "Small bug fixes." if File.exist?(changelog_path) changelog_content = File.read(changelog_path) escaped_version = Regexp.escape(version) diff --git a/lib/src/visual/views/chats/chat_messages_components/response_container.dart b/lib/src/visual/views/chats/chat_messages_components/response_container.dart index 771cb931..6d4d08ad 100644 --- a/lib/src/visual/views/chats/chat_messages_components/response_container.dart +++ b/lib/src/visual/views/chats/chat_messages_components/response_container.dart @@ -69,11 +69,10 @@ class ResponseContainer extends StatelessWidget { messageId: msg.quotesMessageId, showBorder: false, showLeftBorder: false, - colorUsername: false, ), ), ), - if (child != null) child!, + ?child, ], ), ), @@ -263,7 +262,7 @@ class _ResponsePreviewState extends State { ], ), ), - if (imageWidget != null) imageWidget, + ?imageWidget, ], ), );