yubioath-flutter/lib/app/app_url_launcher.dart

31 lines
1.0 KiB
Dart
Raw Normal View History

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
2024-04-18 10:25:47 +03:00
void launchDocumentationUrl() => _launchUrl('https://yubi.co/ya-documentation');
2024-04-18 10:25:47 +03:00
void launchHelpUrl() => _launchUrl('https://yubi.co/ya-support');
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,
);