theme.dart 579B

12345678910111213141516171819202122
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_screenutil/flutter_screenutil.dart';
  3. ThemeData getTheme() {
  4. return ThemeData(
  5. appBarTheme: AppBarTheme(
  6. centerTitle: true,
  7. backgroundColor: Colors.transparent,
  8. foregroundColor: const Color(0xFF333333),
  9. elevation: 0,
  10. toolbarHeight: 44.w,
  11. titleTextStyle: TextStyle(
  12. color: const Color(0xFF333333),
  13. fontWeight: FontWeight.bold,
  14. fontSize: 17.sp,
  15. letterSpacing: 2
  16. ),
  17. ),
  18. backgroundColor: Colors.white,
  19. );
  20. }