mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
Update lib/views/chat_list.dart, pubspec.yaml, CHANGELOG.md files
This commit is contained in:
parent
0f8e44fd78
commit
9de161acc7
@ -1,3 +1,7 @@
|
||||
# Version 0.8.2 - 2020-02-17
|
||||
### Fixes
|
||||
- SpeedDial labels not visible in light mode
|
||||
|
||||
# Version 0.8.1 - 2020-02-16
|
||||
### New features
|
||||
- Dark mode
|
||||
|
@ -202,7 +202,7 @@ class _ChatListState extends State<ChatList> {
|
||||
backgroundColor: Colors.blue,
|
||||
label: I18n.of(context).createNewGroup,
|
||||
labelStyle:
|
||||
TextStyle(fontSize: 18.0, color: blackWhiteColor(context)),
|
||||
TextStyle(fontSize: 18.0, color: Colors.black),
|
||||
onTap: () => Navigator.of(context).pushAndRemoveUntil(
|
||||
AppRoute.defaultRoute(context, NewGroupView()),
|
||||
(r) => r.isFirst),
|
||||
@ -214,9 +214,7 @@ class _ChatListState extends State<ChatList> {
|
||||
label: I18n.of(context).newPrivateChat,
|
||||
labelStyle: TextStyle(
|
||||
fontSize: 18.0,
|
||||
color: Theme.of(context).brightness == Brightness.light
|
||||
? Colors.white
|
||||
: Colors.black),
|
||||
color: Colors.black),
|
||||
onTap: () => Navigator.of(context).pushAndRemoveUntil(
|
||||
AppRoute.defaultRoute(context, NewPrivateChatView()),
|
||||
(r) => r.isFirst),
|
||||
|
@ -11,7 +11,7 @@ description: Chat with your friends.
|
||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
version: 0.8.1+26
|
||||
version: 0.8.2+27
|
||||
|
||||
environment:
|
||||
sdk: ">=2.6.0 <3.0.0"
|
||||
|
Loading…
Reference in New Issue
Block a user