25 lines
733 B
Dart
25 lines
733 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
Widget CommonBtn({void Function()? onTap, required String text}) {
|
|
return InkWell(
|
|
onTap: onTap,
|
|
child: Container(
|
|
width: double.infinity,
|
|
height: 50.h,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFD90B2E), borderRadius: BorderRadius.circular(30)),
|
|
child: Center(
|
|
child: Text(
|
|
text,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 16.sp,
|
|
fontFamily: 'Helvetica',
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
),
|
|
),
|
|
));
|
|
} |