revanced-manager/lib/ui/widgets/patch_text_button.dart

43 lines
1.0 KiB
Dart
Raw Normal View History

2022-08-01 10:38:22 +02:00
import 'package:flutter/material.dart';
2022-08-06 23:35:35 +02:00
import 'package:revanced_manager/constants.dart';
2022-08-01 10:38:22 +02:00
class PatchTextButton extends StatelessWidget {
final String text;
final Function()? onPressed;
final Color borderColor;
final Color backgroundColor;
const PatchTextButton({
Key? key,
required this.text,
this.onPressed,
this.borderColor = const Color(0xff7792BA),
this.backgroundColor = Colors.transparent,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return TextButton(
onPressed: onPressed,
style: TextButton.styleFrom(
side: BorderSide(
color: borderColor,
width: 1,
),
primary: Colors.white,
backgroundColor: backgroundColor,
padding: const EdgeInsets.symmetric(
vertical: 10,
horizontal: 24,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(24),
),
),
child: Text(
text,
style: interTextStyle,
),
);
}
}