backElevatedButtonStyleFrom function

dynamic backElevatedButtonStyleFrom(
  1. BuildContext context
)

Implementation

backElevatedButtonStyleFrom(BuildContext context ) =>  ElevatedButton.styleFrom(
  foregroundColor: Theme.of(Get.context!).primaryColorDark, backgroundColor: Theme.of(Get.context!).primaryColorLight, padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 15),
  shape: const RoundedRectangleBorder(
    borderRadius: BorderRadius.only(
      topLeft: Radius.circular(30),
      bottomLeft: Radius.circular(30),
    ),
  ),
);