mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 00:57:26 +03:00
review updates
This commit is contained in:
parent
d203a6a00f
commit
93dfa7bf47
@ -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';
|
||||
}
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user