appBarTheme function
Implementation
AppBarTheme appBarTheme() {
return AppBarTheme(
backgroundColor: Colors.transparent,
elevation: 0,
centerTitle: true,
iconTheme: const IconThemeData(color: kTextPrimaryLight),
titleTextStyle: GoogleFonts.spaceGrotesk(
color: kTextPrimaryLight,
fontSize: 18,
fontWeight: FontWeight.bold,
),
);
}