review updates

This commit is contained in:
Adam Velebil 2022-10-25 09:25:13 +02:00
parent d203a6a00f
commit 93dfa7bf47
No known key found for this signature in database
GPG Key ID: AC6D6B9D715FC084
2 changed files with 14 additions and 49 deletions

View File

@ -1,31 +0,0 @@
/*
* 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.
*/
import 'dart:io';
class AppUrl {
static final String feedbackUrl = Platform.isAndroid
? 'https://yubi.co/ya-feedback-android'
: 'https://yubi.co/ya-feedback-desktop';
static final String helpUrl = Platform.isAndroid
? 'https://yubi.co/ya-help-android'
: 'https://yubi.co/ya-help-desktop';
static String termsUrl = 'https://yubi.co/terms';
static String privacyUrl = 'https://yubi.co/privacy';
}

View File

@ -14,27 +14,23 @@
* limitations under the License.
*/
import 'dart:io';
import 'package:url_launcher/url_launcher.dart';
import 'app_url.dart';
void launchFeedbackUrl() => _launchUrl(Platform.isAndroid
? 'https://yubi.co/ya-feedback-android'
: 'https://yubi.co/ya-feedback-desktop');
Future<bool> _launchUrl(String url) => launchUrl(
void launchHelpUrl() => _launchUrl(Platform.isAndroid
? 'https://yubi.co/ya-help-android'
: 'https://yubi.co/ya-help-desktop');
void launchTermsUrl() => _launchUrl('https://yubi.co/terms');
void launchPrivacyUrl() => _launchUrl('https://yubi.co/privacy');
Future<bool> _launchUrl(String url) async => await launchUrl(
Uri.parse(url),
mode: LaunchMode.externalApplication,
);
Future<bool> launchFeedbackUrl() async {
return _launchUrl(AppUrl.feedbackUrl);
}
Future<bool> launchHelpUrl() async {
return _launchUrl(AppUrl.helpUrl);
}
Future<bool> launchTermsUrl() async {
return _launchUrl(AppUrl.termsUrl);
}
Future<bool> launchPrivacyUrl() async {
return _launchUrl(AppUrl.privacyUrl);
}