import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../../common.dart'; class Button extends StatefulWidget { GestureTapCallback onTap; String text; double? textSize; double? minWidth; bool isOutline; double? padding; Color? textColor; double? radius; Color? borderColor; Button({ Key? key, this.minWidth, this.isOutline = false, this.textSize, this.padding, this.textColor, this.radius, this.borderColor, required this.onTap, required this.text, }) : super(key: key); @override State