feat: update user

This commit is contained in:
efrilm
2025-08-19 15:05:08 +07:00
parent bfd4604897
commit 7919825955
37 changed files with 2531 additions and 897 deletions
@@ -7,17 +7,20 @@ class AppElevatedButton extends StatelessWidget {
required this.isLoading,
required this.onPressed,
this.height = 50,
this.width = double.infinity,
});
final String text;
final bool isLoading;
final Function()? onPressed;
final double height;
final double width;
@override
Widget build(BuildContext context) {
return Container(
height: height,
width: width,
decoration: BoxDecoration(
gradient: const LinearGradient(colors: AppColor.primaryGradient),
borderRadius: BorderRadius.circular(AppValue.radius),