Clean up
This commit is contained in:
parent
72dce3ac1d
commit
1153085742
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue