start minimal

This commit is contained in:
Mohamed Nouffer
2023-06-02 10:50:56 +05:30
parent 08332d45d4
commit a358f65853
54 changed files with 467 additions and 1327 deletions

View File

@ -0,0 +1,30 @@
import 'package:rogapp/theme/theme.dart';
import 'package:flutter/material.dart';
class RoundedSmallButton extends StatelessWidget {
final VoidCallback onTap;
final String label;
final Color backgroundColor;
final Color textColor;
const RoundedSmallButton({
super.key,
required this.onTap,
required this.label,
this.backgroundColor = Pallete.WHITE_COLOR,
this.textColor = Pallete.BACKGROUND_COLOR,
});
@override
Widget build(BuildContext context) {
return InkWell(
onTap: onTap,
child: Chip(
label: Text(label, style: TextStyle(color: textColor, fontSize: 16),),
backgroundColor: backgroundColor,
labelPadding:const EdgeInsets.symmetric(horizontal: 10, vertical: 3),
),
);
}
}