yubioath-flutter/lib/android/app_methods.dart

88 lines
2.8 KiB
Dart
Raw Normal View History

2022-10-04 13:12:54 +03:00
/*
2023-10-10 09:54:25 +03:00
* Copyright (C) 2022-2024 Yubico.
2022-10-04 13:12:54 +03:00
*
* 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.
*/
2023-02-08 19:12:49 +03:00
import 'dart:convert';
import 'package:flutter/services.dart';
2023-02-08 19:12:49 +03:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
2024-01-24 19:13:03 +03:00
import '../theme.dart';
import 'state.dart';
const appMethodsChannel = MethodChannel('app.methods');
2022-11-08 13:50:36 +03:00
Future<bool> getHasCamera() async {
return await appMethodsChannel.invokeMethod('hasCamera');
}
2023-02-08 19:12:49 +03:00
Future<bool> getHasNfc() async {
return await appMethodsChannel.invokeMethod('hasNfc');
}
Future<bool> isNfcEnabled() async {
return await appMethodsChannel.invokeMethod('isNfcEnabled');
}
2023-10-27 11:10:23 +03:00
/// The next onPause/onResume lifecycle event will not stop and start
/// USB/NFC discovery which will preserve the current YubiKey connection.
///
/// This function should be called before showing system dialogs, such as
/// native file picker or permission request dialogs.
/// The state automatically resets during onResume call.
Future<void> preserveConnectedDeviceWhenPaused() async {
await appMethodsChannel.invokeMethod('preserveConnectionOnPause');
}
2023-02-08 19:12:49 +03:00
Future<void> openNfcSettings() async {
await appMethodsChannel.invokeMethod('openNfcSettings');
}
Future<int> getAndroidSdkVersion() async {
return await appMethodsChannel.invokeMethod('getAndroidSdkVersion');
}
2024-03-15 16:24:42 +03:00
Future<bool> getAndroidIsArc() async {
return await appMethodsChannel.invokeMethod('isArc');
}
2024-01-24 19:13:03 +03:00
Future<Color> getPrimaryColor() async {
2024-01-23 19:15:26 +03:00
final value = await appMethodsChannel.invokeMethod('getPrimaryColor');
2024-01-24 19:13:03 +03:00
return value != null ? Color(value) : defaultPrimaryColor;
2023-10-10 09:54:25 +03:00
}
Future<void> setPrimaryClip(String toClipboard, bool isSensitive) async {
await appMethodsChannel.invokeMethod('setPrimaryClip',
{'toClipboard': toClipboard, 'isSensitive': isSensitive});
}
2023-02-08 19:12:49 +03:00
void setupAppMethodsChannel(WidgetRef ref) {
appMethodsChannel.setMethodCallHandler((call) async {
final args = jsonDecode(call.arguments);
switch (call.method) {
case 'nfcAdapterStateChanged':
{
var nfcEnabled = args['nfcEnabled'];
ref.read(androidNfcStateProvider.notifier).setNfcEnabled(nfcEnabled);
break;
}
default:
throw PlatformException(
code: 'NotImplemented',
message: 'Method ${call.method} is not implemented',
);
}
});
}