style.dart 638 B

1234567891011121314151617181920
  1. import 'package:flutter/material.dart';
  2. import '../utils/index.dart';
  3. class DStyle {
  4. static const Size appBarHeight = Size.fromHeight(40);
  5. }
  6. class DColors {
  7. static const Main = Color.fromARGB(255, 253, 60, 60);
  8. static const back = Color.fromRGBO(243, 243, 243, 1);
  9. static const price = Color.fromRGBO(243, 0, 0, 1);
  10. }
  11. class DText {
  12. static const Main = TextStyle();
  13. static TextStyle appBar = TextStyle(fontSize: 16.px);
  14. static TextStyle search = TextStyle(fontSize: 16.px, color: Colors.black);
  15. static TextStyle price = TextStyle(color: DColors.price, fontWeight: FontWeight.bold, fontSize: 10.px);
  16. }