Enable libolm
This commit is contained in:
parent
2c2f5408ee
commit
d388d8267c
5 changed files with 108 additions and 4 deletions
|
|
@ -6,6 +6,7 @@ import 'package:fluffychat/components/content_banner.dart';
|
|||
import 'package:fluffychat/components/matrix.dart';
|
||||
import 'package:fluffychat/i18n/i18n.dart';
|
||||
import 'package:fluffychat/utils/app_route.dart';
|
||||
import 'package:fluffychat/views/app_info.dart';
|
||||
import 'package:fluffychat/views/chat_list.dart';
|
||||
import 'package:fluffychat/views/sign_up.dart';
|
||||
import 'package:flutter/foundation.dart';
|
||||
|
|
@ -132,6 +133,16 @@ class _SettingsState extends State<Settings> {
|
|||
),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
leading: Icon(Icons.info),
|
||||
title: Text(I18n.of(context).fluffychat),
|
||||
onTap: () => Navigator.of(context).push(
|
||||
AppRoute.defaultRoute(
|
||||
context,
|
||||
AppInfoView(),
|
||||
),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
leading: Icon(Icons.sentiment_very_satisfied),
|
||||
title: Text(I18n.of(context).donate),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue