mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-22 14:10:37 -04:00
fix popcontrol for android
This commit is contained in:
parent
b835e10200
commit
2313247407
2 changed files with 7 additions and 8 deletions
|
@ -2,13 +2,15 @@ import 'package:flutter/widgets.dart';
|
|||
|
||||
import '../../keyboard_shortcuts.dart';
|
||||
import '../../notifications/notifications.dart';
|
||||
import '../../theme/theme.dart';
|
||||
|
||||
class RouterShell extends StatelessWidget {
|
||||
const RouterShell({required Widget child, super.key}) : _child = child;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) =>
|
||||
NotificationsWidget(child: KeyboardShortcuts(child: _child));
|
||||
Widget build(BuildContext context) => PopControl(
|
||||
dismissible: false,
|
||||
child: NotificationsWidget(child: KeyboardShortcuts(child: _child)));
|
||||
|
||||
final Widget _child;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue