This commit is contained in:
Christian Pauly 2020-01-17 11:42:48 +01:00
parent 72dce3ac1d
commit 1153085742
3 changed files with 15 additions and 7 deletions

View File

@ -1,6 +1,12 @@
# Version 0.2.4 - 2020-MM-DD
### New features
- Improved design
- Implement signing up (Still needs a matrix.org fix)
- Forward messages
- Content viewer
### Fixes
- Chat textfield isn't scrollable on large text
- Text disappears in textfield on resuming the app
# Version 0.2.3 - 2020-01-08
### New features

View File

@ -32,12 +32,14 @@ class ContentBanner extends StatelessWidget {
method: ThumbnailMethod.scale,
);
return InkWell(
onTap: () => Navigator.of(context).push(
AppRoute.defaultRoute(
context,
ContentWebView(mxContent),
),
),
onTap: () => mxContent.mxc?.isNotEmpty ?? false
? Navigator.of(context).push(
AppRoute.defaultRoute(
context,
ContentWebView(mxContent),
),
)
: null,
child: Container(
height: 200,
color: Theme.of(context).secondaryHeaderColor,

View File

@ -113,7 +113,7 @@ class _ChatDetailsState extends State<ChatDetails> {
Divider(height: 1),
widget.room.canSendEvent("m.room.avatar") && !kIsWeb
? ListTile(
title: Text("Set group avatar"),
title: Text("Upload group avatar"),
leading: Icon(Icons.camera),
onTap: () => setAvatarAction(context),
)