mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
18 lines
382 B
Dart
Executable File
18 lines
382 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
class NoDeviceScreen extends StatelessWidget {
|
|
const NoDeviceScreen({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: const [
|
|
Text('Insert a YubiKey'),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|