yubioath-flutter/lib/widgets/responsive_dialog.dart

70 lines
1.9 KiB
Dart
Raw Normal View History

2022-03-15 20:04:26 +03:00
import 'package:flutter/material.dart';
class ResponsiveDialog extends StatefulWidget {
2022-03-15 20:04:26 +03:00
final Widget? title;
final Widget child;
final List<Widget> actions;
2022-03-17 22:10:10 +03:00
final Function()? onCancel;
2022-03-15 20:04:26 +03:00
const ResponsiveDialog(
2022-05-12 10:56:55 +03:00
{super.key,
2022-03-17 22:10:10 +03:00
required this.child,
this.title,
this.actions = const [],
2022-05-12 10:56:55 +03:00
this.onCancel});
2022-03-15 20:04:26 +03:00
@override
State<ResponsiveDialog> createState() => _ResponsiveDialogState();
}
class _ResponsiveDialogState extends State<ResponsiveDialog> {
final Key _childKey = GlobalKey();
2022-03-15 20:04:26 +03:00
@override
Widget build(BuildContext context) =>
LayoutBuilder(builder: ((context, constraints) {
if (constraints.maxWidth < 540) {
// Fullscreen
return Scaffold(
appBar: AppBar(
title: widget.title,
actions: widget.actions,
leading: CloseButton(
onPressed: () {
widget.onCancel?.call();
Navigator.of(context).pop();
},
),
),
body: SingleChildScrollView(
2022-06-02 16:36:50 +03:00
padding: const EdgeInsets.all(20.0),
child: Container(key: _childKey, child: widget.child),
),
);
} else {
// Dialog
final cancelText = widget.onCancel == null && widget.actions.isEmpty
? 'Close'
: 'Cancel';
return AlertDialog(
title: widget.title,
scrollable: true,
content: SizedBox(
width: 380,
child: Container(key: _childKey, child: widget.child),
),
actions: [
TextButton(
child: Text(cancelText),
onPressed: () {
widget.onCancel?.call();
Navigator.of(context).pop();
},
),
...widget.actions
],
);
}
}));
2022-03-15 20:04:26 +03:00
}