mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-03 14:03:17 +03:00
40d616c8bd
- Make AppPage content scrollable. - Add optional FAB (with extra padding for FAB). - Add bottomMenu.
19 lines
458 B
Dart
Executable File
19 lines
458 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
import '../models.dart';
|
|
import 'app_page.dart';
|
|
|
|
class DeviceInfoScreen extends StatelessWidget {
|
|
final YubiKeyData device;
|
|
const DeviceInfoScreen(this.device, {Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppPage(
|
|
title: const Text('Coming soon!'),
|
|
centered: true,
|
|
child: const Text('This page intentionally left blank (for now)'),
|
|
);
|
|
}
|
|
}
|