35 lines
1.1 KiB
Dart
35 lines
1.1 KiB
Dart
import 'package:wonders/common_libs.dart';
|
|
import 'package:wonders/ui/common/app_scroll_behavior.dart';
|
|
|
|
class WondersAppScaffold extends StatelessWidget {
|
|
const WondersAppScaffold({Key? key, required this.child}) : super(key: key);
|
|
final Widget child;
|
|
static AppStyle get style => _style;
|
|
static AppStyle _style = AppStyle();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// Listen to the device size, and update AppStyle when it changes
|
|
_style = AppStyle(screenSize: context.sizePx);
|
|
Animate.defaultDuration = _style.times.fast;
|
|
appLogic.handleAppSizeChanged(context.mq.size);
|
|
return Stack(
|
|
key: ValueKey($styles.scale),
|
|
children: [
|
|
Theme(
|
|
data: $styles.colors.toThemeData(),
|
|
// Provide a default texts style to allow Hero's to render text properly
|
|
child: DefaultTextStyle(
|
|
style: $styles.text.body,
|
|
// Use a custom scroll behavior across entire app
|
|
child: ScrollConfiguration(
|
|
behavior: AppScrollBehavior(),
|
|
child: child,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|