elevatedButtonNormalV1 function
Implementation
elevatedButtonNormalV1({Color? color, Color? textColor, OutlinedBorder? shape}) =>
ElevatedButton.styleFrom(
backgroundColor: (color == null) ? Theme.of(Get.context!).primaryColor : color,
foregroundColor: (textColor == null) ? Colors.white : textColor,
shape: shape,
);