You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
649 B
29 lines
649 B
// SPDX-FileCopyrightText: Copyright 2023 Open Mobile Platform LLC <community@omp.ru> |
|
// SPDX-License-Identifier: BSD-3-Clause |
|
import 'package:flutter/material.dart'; |
|
|
|
class PageLayout extends StatefulWidget { |
|
const PageLayout({ |
|
super.key, |
|
required this.child, |
|
}); |
|
|
|
final Widget child; |
|
|
|
@override |
|
State<PageLayout> createState() => _PageLayoutState(); |
|
} |
|
|
|
class _PageLayoutState extends State<PageLayout> { |
|
@override |
|
Widget build(BuildContext context) { |
|
return Localizations.override( |
|
context: context, |
|
child: Builder( |
|
builder: (context) { |
|
return widget.child; |
|
}, |
|
), |
|
); |
|
} |
|
}
|
|
|