stack_wallet/lib/widgets/background.dart

64 lines
1.7 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:stackwallet/utilities/assets.dart';
import 'package:stackwallet/utilities/theme/color_theme.dart';
import 'package:stackwallet/utilities/theme/stack_colors.dart';
import 'package:stackwallet/widgets/conditional_parent.dart';
2022-11-25 23:49:47 +00:00
class Background extends StatelessWidget {
const Background({
Key? key,
required this.child,
}) : super(key: key);
final Widget child;
@override
2022-11-25 23:49:47 +00:00
Widget build(BuildContext context) {
Color? color;
2022-11-25 23:49:47 +00:00
switch (Theme.of(context).extension<StackColors>()!.themeType) {
case ThemeType.light:
case ThemeType.dark:
color = Theme.of(context).extension<StackColors>()!.background;
break;
case ThemeType.oceanBreeze:
color = null;
break;
}
final bgAsset = Assets.svg.background(context);
return Container(
decoration: BoxDecoration(
color: color,
gradient:
Theme.of(context).extension<StackColors>()!.gradientBackground,
),
child: ConditionalParent(
condition: bgAsset != null,
builder: (child) => Stack(
children: [
Positioned.fill(
child: Padding(
padding: EdgeInsets.only(
top: MediaQuery.of(context).size.height * (1 / 8),
bottom: MediaQuery.of(context).size.height * (1 / 12),
),
child: SvgPicture.asset(
bgAsset!,
fit: BoxFit.fill,
),
),
),
Positioned.fill(
child: child,
),
],
),
child: child,
),
);
}
}