90 lines
2.7 KiB
Dart
90 lines
2.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:rijig_mobile/core/guide.dart';
|
|
|
|
class CardButtonOne extends StatelessWidget {
|
|
final String textButton;
|
|
final double fontSized;
|
|
final Color colorText;
|
|
final double borderRadius;
|
|
final double horizontal;
|
|
final double vertical;
|
|
final Function() onTap;
|
|
final Color? color;
|
|
final BoxBorder? borderAll;
|
|
final bool loadingTrue;
|
|
final bool usingRow;
|
|
final MainAxisSize mainAxisSize;
|
|
final Widget? child;
|
|
const CardButtonOne({
|
|
super.key,
|
|
required this.textButton,
|
|
required this.fontSized,
|
|
required this.colorText,
|
|
required this.borderRadius,
|
|
required this.horizontal,
|
|
required this.vertical,
|
|
required this.onTap,
|
|
this.loadingTrue = false,
|
|
this.usingRow = false,
|
|
this.color,
|
|
this.borderAll,
|
|
this.mainAxisSize = MainAxisSize.max,
|
|
this.child,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return InkWell(
|
|
onTap: onTap,
|
|
child: Container(
|
|
height: vertical,
|
|
width: horizontal,
|
|
decoration: BoxDecoration(
|
|
color: color ?? blackNavyColor,
|
|
borderRadius: BorderRadius.circular(borderRadius).w,
|
|
border: borderAll,
|
|
),
|
|
margin: EdgeInsets.zero,
|
|
child: Center(
|
|
child:
|
|
(!loadingTrue)
|
|
? usingRow == false
|
|
? Text(
|
|
textButton,
|
|
style: GoogleFonts.roboto(
|
|
textStyle: TextStyle(
|
|
fontWeight: bold,
|
|
fontSize: fontSized.sp,
|
|
color: colorText,
|
|
),
|
|
),
|
|
)
|
|
: Row(
|
|
mainAxisSize: mainAxisSize,
|
|
children: [
|
|
Text(
|
|
textButton,
|
|
style: GoogleFonts.roboto(
|
|
textStyle: TextStyle(
|
|
fontWeight: medium,
|
|
fontSize: fontSized.sp,
|
|
color: colorText,
|
|
),
|
|
),
|
|
),
|
|
GapCustom().gapValue(10, false),
|
|
Container(child: child),
|
|
],
|
|
)
|
|
: CircularProgressIndicator(
|
|
backgroundColor: whiteColor,
|
|
color: primaryColor,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|