yubioath-flutter/lib/app/views/app_page.dart

58 lines
1.6 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'device_button.dart';
import 'main_drawer.dart';
class AppPage extends ConsumerWidget {
final Key _scaffoldKey = GlobalKey();
final Widget? title;
final Widget child;
final void Function()? onBack;
AppPage({Key? key, this.title, required this.child, this.onBack})
: super(key: key);
@override
Widget build(BuildContext context, WidgetRef ref) => LayoutBuilder(
builder: (context, constraints) {
if (constraints.maxWidth < 540) {
// Single column layout
return _buildScaffold(context, ref, true);
} else {
// Two-column layout
return Scaffold(
body: Row(
children: [
const SizedBox(
width: 240,
child: MainPageDrawer(shouldPop: false),
),
Expanded(
child: _buildScaffold(context, ref, false),
),
],
),
);
}
},
);
Scaffold _buildScaffold(BuildContext context, WidgetRef ref, bool hasDrawer) {
return Scaffold(
key: _scaffoldKey,
appBar: AppBar(
leading: onBack != null
? BackButton(
onPressed: onBack,
)
: null,
title: title,
centerTitle: true,
actions: const [DeviceButton()],
),
drawer: hasDrawer ? const MainPageDrawer() : null,
body: child,
);
}
}