2022-10-24 15:18:31 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 Yubico.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-10-25 10:25:13 +03:00
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2022-10-24 15:18:31 +03:00
|
|
|
|
2023-03-03 18:29:24 +03:00
|
|
|
import '../core/state.dart';
|
|
|
|
|
|
|
|
void launchFeedbackUrl() => _launchUrl(isAndroid
|
2022-10-25 10:25:13 +03:00
|
|
|
? 'https://yubi.co/ya-feedback-android'
|
|
|
|
: 'https://yubi.co/ya-feedback-desktop');
|
2022-10-24 15:18:31 +03:00
|
|
|
|
2023-03-03 18:29:24 +03:00
|
|
|
void launchHelpUrl() => _launchUrl(isAndroid
|
2022-10-25 10:25:13 +03:00
|
|
|
? 'https://yubi.co/ya-help-android'
|
|
|
|
: 'https://yubi.co/ya-help-desktop');
|
2022-10-24 15:18:31 +03:00
|
|
|
|
2022-10-25 10:25:13 +03:00
|
|
|
void launchTermsUrl() => _launchUrl('https://yubi.co/terms');
|
2022-10-24 15:18:31 +03:00
|
|
|
|
2022-10-25 10:25:13 +03:00
|
|
|
void launchPrivacyUrl() => _launchUrl('https://yubi.co/privacy');
|
2022-10-24 15:18:31 +03:00
|
|
|
|
2022-10-25 10:25:13 +03:00
|
|
|
Future<bool> _launchUrl(String url) async => await launchUrl(
|
|
|
|
Uri.parse(url),
|
|
|
|
mode: LaunchMode.externalApplication,
|
|
|
|
);
|