44 lines
1.0 KiB
Dart
44 lines
1.0 KiB
Dart
import 'package:e_porter/_core/constants/colors.dart';
|
|
import 'package:e_porter/_core/constants/typography.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:zoom_tap_animation/zoom_tap_animation.dart';
|
|
|
|
class FooterText extends StatelessWidget {
|
|
final String firstText;
|
|
final String secondText;
|
|
final VoidCallback onTab;
|
|
|
|
const FooterText({
|
|
super.key,
|
|
required this.firstText,
|
|
required this.secondText,
|
|
required this.onTab,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
TypographyStyles.body(
|
|
firstText,
|
|
color: GrayColors.gray500,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
SizedBox(
|
|
width: 6,
|
|
),
|
|
InkWell(
|
|
onTap: onTab,
|
|
child: ZoomTapAnimation(
|
|
child: TypographyStyles.body(
|
|
secondText,
|
|
color: Colors.blue.shade600,
|
|
),
|
|
),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|