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.

18 lines
853B

  1. import 'package:flutter/material.dart';
  2. const Border kBorderTextField =
  3. Border(bottom: BorderSide(width: 0.5, color: Colors.grey));
  4. const TextStyle kTextStyleNormal =
  5. TextStyle(fontSize: 15.0, color: Colors.black);
  6. const Color kColorNormalIcon = Colors.lightBlue;
  7. const TextStyle kTextHintStyle = TextStyle(fontSize: 15.0, color: Colors.grey);
  8. const EdgeInsetsGeometry kContentPaddingNormalTextField =
  9. EdgeInsets.only(top: 5.0, right: 10.0, bottom: 5.0, left: 10.0);
  10. const BorderRadius kButtonBorder = BorderRadius.all(Radius.circular(30.0));
  11. const Color kColorShadowNormalButton = Colors.lightBlueAccent;
  12. const Color kColorNormalButton = Colors.green;
  13. const TextStyle kTextButtonStyleLarge =
  14. TextStyle(fontSize: 18.0, color: Colors.white);
  15. const TextStyle kTextButtonStyleNormal =
  16. TextStyle(fontSize: 15.0, color: Colors.black54);