mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
99 lines
3 KiB
Dart
99 lines
3 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_svg/svg.dart';
|
||
|
import 'package:stackwallet/utilities/assets.dart';
|
||
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||
|
import 'package:stackwallet/utilities/util.dart';
|
||
|
import 'package:stackwallet/widgets/desktop/custom_text_button.dart';
|
||
|
|
||
|
class DeleteButton extends StatelessWidget {
|
||
|
const DeleteButton({
|
||
|
Key? key,
|
||
|
this.width,
|
||
|
this.height,
|
||
|
this.label,
|
||
|
this.onPressed,
|
||
|
this.enabled = true,
|
||
|
this.desktopMed = false,
|
||
|
}) : super(key: key);
|
||
|
|
||
|
final double? width;
|
||
|
final double? height;
|
||
|
final String? label;
|
||
|
final VoidCallback? onPressed;
|
||
|
final bool enabled;
|
||
|
final bool desktopMed;
|
||
|
|
||
|
TextStyle getStyle(bool isDesktop, BuildContext context) {
|
||
|
if (isDesktop) {
|
||
|
if (desktopMed) {
|
||
|
return STextStyles.desktopTextExtraSmall(context).copyWith(
|
||
|
color: enabled
|
||
|
? Theme.of(context).extension<StackColors>()!.accentColorRed
|
||
|
: Theme.of(context)
|
||
|
.extension<StackColors>()!
|
||
|
.buttonTextSecondaryDisabled,
|
||
|
);
|
||
|
} else {
|
||
|
return enabled
|
||
|
? STextStyles.desktopButtonSecondaryEnabled(context).copyWith(
|
||
|
color:
|
||
|
Theme.of(context).extension<StackColors>()!.accentColorRed)
|
||
|
: STextStyles.desktopButtonSecondaryDisabled(context);
|
||
|
}
|
||
|
} else {
|
||
|
return STextStyles.button(context).copyWith(
|
||
|
color: enabled
|
||
|
? Theme.of(context).extension<StackColors>()!.accentColorRed
|
||
|
: Theme.of(context)
|
||
|
.extension<StackColors>()!
|
||
|
.buttonTextSecondaryDisabled,
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
final isDesktop = Util.isDesktop;
|
||
|
|
||
|
return CustomTextButtonBase(
|
||
|
height: desktopMed ? 56 : height,
|
||
|
width: width,
|
||
|
textButton: TextButton(
|
||
|
onPressed: enabled ? onPressed : null,
|
||
|
style: enabled
|
||
|
? Theme.of(context)
|
||
|
.extension<StackColors>()!
|
||
|
.getDeleteEnabledButtonColor(context)
|
||
|
: Theme.of(context)
|
||
|
.extension<StackColors>()!
|
||
|
.getDeleteDisabledButtonColor(context),
|
||
|
child: Row(
|
||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||
|
children: [
|
||
|
SvgPicture.asset(
|
||
|
Assets.svg.trash,
|
||
|
width: 20,
|
||
|
height: 20,
|
||
|
color: enabled
|
||
|
? Theme.of(context).extension<StackColors>()!.accentColorRed
|
||
|
: Theme.of(context)
|
||
|
.extension<StackColors>()!
|
||
|
.buttonTextSecondaryDisabled,
|
||
|
),
|
||
|
if (label != null)
|
||
|
const SizedBox(
|
||
|
width: 10,
|
||
|
),
|
||
|
if (label != null)
|
||
|
Text(
|
||
|
label!,
|
||
|
style: getStyle(isDesktop, context),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|