mnemo_cards/lib/widgets/text_button.dart

29 lines
697 B
Dart
Raw Normal View History

2024-05-22 20:48:44 +00:00
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class LinkButton extends StatelessWidget {
final VoidCallback? onPressed;
final String text;
LinkButton(this.text, this.onPressed);
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: onPressed,
child: Padding(
padding: EdgeInsets.only(top: 2.0.h, bottom: 2.0.h),
child: Text(
text,
style: TextStyle(
2024-06-22 12:29:18 +00:00
fontWeight: FontWeight.w700,
2024-05-22 20:48:44 +00:00
fontSize: 16,
decoration: TextDecoration.underline,
),
),
),
);
}
}