39 lines
683 B
Dart
Raw Permalink Normal View History

2025-09-06 19:21:52 +05:30
import 'package:flutter/material.dart';
class BaseButton extends StatelessWidget {
const BaseButton(
{super.key,
required this.text,
this.onPressed,
this.buttonStyle,
this.buttonTextStyle,
this.isDisabled,
this.height,
this.width,
this.margin,
this.alignment});
final String text;
final VoidCallback? onPressed;
final ButtonStyle? buttonStyle;
final TextStyle? buttonTextStyle;
final bool? isDisabled;
final double? height;
final double? width;
final EdgeInsets? margin;
final Alignment? alignment;
@override
Widget build(BuildContext context) {
return const SizedBox.shrink();
}
}