mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-27 14:23:18 +03:00
21 lines
481 B
Dart
Executable File
21 lines
481 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
import '../models.dart';
|
|
|
|
class DeviceInfoScreen extends StatelessWidget {
|
|
final YubiKeyData device;
|
|
const DeviceInfoScreen(this.device, {Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: const [
|
|
Text('This page intentionally left blank (for now)'),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|