Merge branch 'master' of gitlab.com:ChristianPauly/fluffychat-flutter
This commit is contained in:
commit
048dfb3a01
|
@ -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
|
# Version 0.8.1 - 2020-02-16
|
||||||
### New features
|
### New features
|
||||||
- Dark mode
|
- Dark mode
|
||||||
|
|
|
@ -202,7 +202,7 @@ class _ChatListState extends State<ChatList> {
|
||||||
backgroundColor: Colors.blue,
|
backgroundColor: Colors.blue,
|
||||||
label: I18n.of(context).createNewGroup,
|
label: I18n.of(context).createNewGroup,
|
||||||
labelStyle:
|
labelStyle:
|
||||||
TextStyle(fontSize: 18.0, color: blackWhiteColor(context)),
|
TextStyle(fontSize: 18.0, color: Colors.black),
|
||||||
onTap: () => Navigator.of(context).pushAndRemoveUntil(
|
onTap: () => Navigator.of(context).pushAndRemoveUntil(
|
||||||
AppRoute.defaultRoute(context, NewGroupView()),
|
AppRoute.defaultRoute(context, NewGroupView()),
|
||||||
(r) => r.isFirst),
|
(r) => r.isFirst),
|
||||||
|
@ -214,9 +214,7 @@ class _ChatListState extends State<ChatList> {
|
||||||
label: I18n.of(context).newPrivateChat,
|
label: I18n.of(context).newPrivateChat,
|
||||||
labelStyle: TextStyle(
|
labelStyle: TextStyle(
|
||||||
fontSize: 18.0,
|
fontSize: 18.0,
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: Colors.black),
|
||||||
? Colors.white
|
|
||||||
: Colors.black),
|
|
||||||
onTap: () => Navigator.of(context).pushAndRemoveUntil(
|
onTap: () => Navigator.of(context).pushAndRemoveUntil(
|
||||||
AppRoute.defaultRoute(context, NewPrivateChatView()),
|
AppRoute.defaultRoute(context, NewPrivateChatView()),
|
||||||
(r) => r.isFirst),
|
(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.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 0.8.1+26
|
version: 0.8.2+27
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.6.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
@ -27,7 +27,7 @@ dependencies:
|
||||||
famedlysdk:
|
famedlysdk:
|
||||||
git:
|
git:
|
||||||
url: https://gitlab.com/famedly/famedlysdk.git
|
url: https://gitlab.com/famedly/famedlysdk.git
|
||||||
ref: b7dea7c6a5634f68816be9323ce78669b7d0ff0f
|
ref: 75c1dc1c566e848adebee08e7c882b267ff0797e
|
||||||
|
|
||||||
localstorage: ^3.0.1+4
|
localstorage: ^3.0.1+4
|
||||||
bubble: ^1.1.9+1
|
bubble: ^1.1.9+1
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
<link rel="shortcut icon" type="image/x-icon" href="assets/assets/logo.png">
|
||||||
<title>fluffychat</title>
|
<title>fluffychat</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in a new issue