buildTheme function
Implementation
ThemeData buildTheme() {
return ThemeData(
useMaterial3: true,
colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigo),
scaffoldBackgroundColor: Colors.grey[50],
visualDensity: VisualDensity.adaptivePlatformDensity,
);
}