theme.dart 288B

12345678910111213
  1. import 'package:flutter/material.dart';
  2. ThemeData getTheme() {
  3. return ThemeData(
  4. appBarTheme: const AppBarTheme(
  5. backgroundColor: Colors.transparent,
  6. foregroundColor: Color(0xFF333333),
  7. elevation: 0,
  8. ),
  9. backgroundColor: Colors.white,
  10. );
  11. }