You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
953 B

  1. import 'package:flutter/material.dart';
  2. import 'package:michele_s_application8/core/app_export.dart';
  3. class AppDecoration {
  4. static BoxDecoration get outlineBlack9003f => BoxDecoration(
  5. gradient: LinearGradient(
  6. begin: Alignment(
  7. 0.5,
  8. 0,
  9. ),
  10. end: Alignment(
  11. 0.5,
  12. 1.11,
  13. ),
  14. colors: [
  15. ColorConstant.blueA400,
  16. ColorConstant.blue600E8,
  17. ],
  18. ),
  19. );
  20. static BoxDecoration get fillGray200 => BoxDecoration(
  21. color: ColorConstant.gray200,
  22. );
  23. static BoxDecoration get fillWhiteA700 => BoxDecoration(
  24. color: ColorConstant.whiteA700,
  25. );
  26. }
  27. class BorderRadiusStyle {
  28. static BorderRadius roundedBorder8 = BorderRadius.circular(
  29. getHorizontalSize(
  30. 8,
  31. ),
  32. );
  33. static BorderRadius roundedBorder14 = BorderRadius.circular(
  34. getHorizontalSize(
  35. 14,
  36. ),
  37. );
  38. }