2023-05-26 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Stack Wallet.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-09-26 16:13:15 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
2023-05-09 21:57:40 +00:00
|
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
2022-09-26 16:13:15 +00:00
|
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
|
|
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
|
|
|
|
|
|
|
|
class DesktopDialogCloseButton extends StatelessWidget {
|
|
|
|
const DesktopDialogCloseButton({
|
|
|
|
Key? key,
|
|
|
|
this.onPressedOverride,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
final VoidCallback? onPressedOverride;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.all(20.0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
children: [
|
|
|
|
AppBarIconButton(
|
|
|
|
color:
|
|
|
|
Theme.of(context).extension<StackColors>()!.textFieldDefaultBG,
|
|
|
|
size: 40,
|
|
|
|
icon: SvgPicture.asset(
|
|
|
|
Assets.svg.x,
|
|
|
|
color: Theme.of(context).extension<StackColors>()!.textDark,
|
|
|
|
width: 22,
|
|
|
|
height: 22,
|
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
if (onPressedOverride == null) {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
} else {
|
|
|
|
onPressedOverride!.call();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|