delete popup styled

This commit is contained in:
ryleedavis 2022-11-21 14:40:11 -07:00
parent 8a6025db4b
commit 66950ccc50

View file

@ -129,16 +129,30 @@ class _DeletePopupButtonState extends State<DeletePopupButton> {
borderRadius: BorderRadius.circular(
Constants.size.circularBorderRadius,
),
color: Colors.red,
color: Theme.of(context).extension<StackColors>()!.popupBG,
boxShadow: [
Theme.of(context)
.extension<StackColors>()!
.standardBoxShadow,
],
),
child: Text(
"Delete",
style: STextStyles.desktopButtonSecondaryEnabled(context),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
const SizedBox(width: 24),
SvgPicture.asset(
Assets.svg.trash,
),
const SizedBox(width: 14),
Text(
"Delete wallet",
style: STextStyles.desktopTextExtraExtraSmall(context)
.copyWith(
color: Theme.of(context)
.extension<StackColors>()!
.textDark),
),
],
),
),
),