buildSettingsHeaderIcon method
Builds the header icons that will be used to change the theme of the application.
Implementation
@override
Widget buildSettingsHeaderIcon(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
buildIcon(context, ThemeMode.light),
buildIcon(context, ThemeMode.dark),
],
);
}