revanced-manager/lib/ui/widgets/rootCheckerView/magisk_button.dart

45 lines
1.1 KiB
Dart
Raw Normal View History

2022-08-14 16:03:01 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_i18n/widgets/I18nText.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:google_fonts/google_fonts.dart';
class MagiskButton extends StatelessWidget {
2022-08-18 16:33:33 +02:00
final Function() onPressed;
2022-08-14 16:03:01 +02:00
const MagiskButton({
Key? key,
2022-08-18 16:33:33 +02:00
required this.onPressed,
2022-08-14 16:03:01 +02:00
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
GestureDetector(
onTap: onPressed,
child: CircleAvatar(
radius: 32,
backgroundColor: Theme.of(context).colorScheme.secondary,
2022-08-14 16:03:01 +02:00
child: SvgPicture.asset(
'assets/images/magisk.svg',
color: Theme.of(context).colorScheme.surface,
height: 40,
width: 40,
2022-08-14 16:03:01 +02:00
),
),
),
const SizedBox(height: 8),
I18nText(
'rootCheckerView.grantPermission',
child: Text(
'',
style: GoogleFonts.poppins(
fontSize: 15,
),
),
),
],
);
}
}