mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
fix: Wrong urls
This commit is contained in:
parent
5026f1bf8d
commit
29076db135
@ -40,10 +40,6 @@ abstract class PlatformInfos {
|
||||
context: context,
|
||||
children: [
|
||||
Text('Version: $version'),
|
||||
RaisedButton(
|
||||
child: Text(L10n.of(context).privacy),
|
||||
onPressed: () => launch(AppConfig.privacyUrl),
|
||||
),
|
||||
RaisedButton(
|
||||
child: Text(L10n.of(context).sourceCode),
|
||||
onPressed: () => launch(AppConfig.sourceCodeUrl),
|
||||
|
@ -195,7 +195,7 @@ class _HomeserverPickerState extends State<HomeserverPicker> {
|
||||
color: Colors.blueGrey,
|
||||
),
|
||||
),
|
||||
onPressed: () => PlatformInfos.showDialog(context),
|
||||
onPressed: () => launch(AppConfig.privacyUrl),
|
||||
),
|
||||
FlatButton(
|
||||
child: Text(
|
||||
|
@ -527,11 +527,6 @@ class _SettingsState extends State<Settings> {
|
||||
title: Text(L10n.of(context).privacy),
|
||||
onTap: () => launch(AppConfig.privacyUrl),
|
||||
),
|
||||
ListTile(
|
||||
trailing: Icon(Icons.code_outlined),
|
||||
title: Text(L10n.of(context).sourceCode),
|
||||
onTap: () => launch(AppConfig.sourceCodeUrl),
|
||||
),
|
||||
ListTile(
|
||||
trailing: Icon(Icons.link_outlined),
|
||||
title: Text(L10n.of(context).about),
|
||||
|
Loading…
Reference in New Issue
Block a user