mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
63 lines
1.7 KiB
Dart
63 lines
1.7 KiB
Dart
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';
|
|
|
|
class Background extends StatelessWidget {
|
|
const Background({
|
|
Key? key,
|
|
required this.child,
|
|
}) : super(key: key);
|
|
|
|
final Widget child;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
Color? color;
|
|
|
|
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,
|
|
),
|
|
);
|
|
}
|
|
}
|