mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
50 lines
1.5 KiB
Dart
50 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:revanced_manager/constants.dart';
|
|
import 'package:revanced_manager/theme.dart';
|
|
|
|
class PatchTextButton extends StatelessWidget {
|
|
final String text;
|
|
final Function() onPressed;
|
|
final Color borderColor;
|
|
final Color backgroundColor;
|
|
const PatchTextButton({
|
|
Key? key,
|
|
required this.text,
|
|
required this.onPressed,
|
|
this.borderColor = const Color(0xff7792BA),
|
|
this.backgroundColor = Colors.transparent,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextButton(
|
|
onPressed: onPressed,
|
|
style: Theme.of(context).textButtonTheme.style?.copyWith(
|
|
backgroundColor: MaterialStateProperty.all<Color?>(backgroundColor),
|
|
side: MaterialStateProperty.all<BorderSide>(
|
|
BorderSide(
|
|
color: borderColor,
|
|
width: 1,
|
|
),
|
|
),
|
|
padding: MaterialStateProperty.all<EdgeInsetsGeometry>(
|
|
const EdgeInsets.symmetric(
|
|
horizontal: 16,
|
|
vertical: 4,
|
|
),
|
|
)),
|
|
child: I18nText(text,
|
|
child: Text(
|
|
'',
|
|
style: interTextStyle.copyWith(
|
|
color: backgroundColor == Colors.transparent
|
|
? const Color.fromRGBO(119, 146, 186, 1)
|
|
: isDark
|
|
? Colors.black
|
|
: Colors.white,
|
|
),
|
|
)),
|
|
);
|
|
}
|
|
}
|