import 'package:auto_size_text/auto_size_text.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../../common.dart'; class Button extends StatefulWidget { final GestureTapCallback onTap; final String text; final double? textSize; final double? minWidth; final bool isOutline; final double? padding; final Color? textColor; final double? radius; final 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