2021-02-25 18:25:52 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
import 'package:cake_wallet/view_model/settings/link_list_item.dart';
|
|
|
|
import 'package:cake_wallet/view_model/settings/regular_list_item.dart';
|
|
|
|
import 'package:cake_wallet/view_model/settings/settings_list_item.dart';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
2021-03-01 18:16:28 +00:00
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2021-02-25 18:25:52 +00:00
|
|
|
|
|
|
|
part 'support_view_model.g.dart';
|
|
|
|
|
|
|
|
class SupportViewModel = SupportViewModelBase with _$SupportViewModel;
|
|
|
|
|
|
|
|
abstract class SupportViewModelBase with Store {
|
|
|
|
SupportViewModelBase() {
|
|
|
|
items = [
|
|
|
|
RegularListItem(
|
|
|
|
title: S.current.faq,
|
2021-03-01 18:16:28 +00:00
|
|
|
handler: (BuildContext context) async {
|
|
|
|
if (await canLaunch(url)) await launch(url);
|
|
|
|
},
|
2021-02-25 18:25:52 +00:00
|
|
|
),
|
|
|
|
LinkListItem(
|
|
|
|
title: 'Email',
|
|
|
|
linkTitle: 'support@cakewallet.com',
|
|
|
|
link: 'mailto:support@cakewallet.com'),
|
|
|
|
LinkListItem(
|
|
|
|
title: 'Telegram',
|
|
|
|
icon: 'assets/images/Telegram.png',
|
|
|
|
linkTitle: '@cakewallet_bot',
|
|
|
|
link: 'https:t.me/cakewallet_bot'),
|
|
|
|
LinkListItem(
|
|
|
|
title: 'Twitter',
|
|
|
|
icon: 'assets/images/Twitter.png',
|
|
|
|
linkTitle: '@cakewallet',
|
|
|
|
link: 'https://twitter.com/cakewallet'),
|
|
|
|
LinkListItem(
|
|
|
|
title: 'ChangeNow',
|
|
|
|
icon: 'assets/images/change_now.png',
|
|
|
|
linkTitle: 'support@changenow.io',
|
2021-03-26 18:59:38 +00:00
|
|
|
link: 'mailto:support@changenow.io'),
|
|
|
|
LinkListItem(
|
|
|
|
title: 'Wyre',
|
|
|
|
icon: 'assets/images/wyre.png',
|
|
|
|
linkTitle: S.current.submit_request,
|
2021-03-29 17:32:39 +00:00
|
|
|
link: 'https://wyre-support.zendesk.com/hc/en-us/requests/new')
|
2021-02-25 18:25:52 +00:00
|
|
|
];
|
|
|
|
}
|
2021-03-01 18:16:28 +00:00
|
|
|
static const url = 'https://cakewallet.com/guide/';
|
|
|
|
|
2021-02-25 18:25:52 +00:00
|
|
|
List<SettingsListItem> items;
|
|
|
|
}
|