getFooterThemeDark function

ThemeData getFooterThemeDark()

Implementation

ThemeData getFooterThemeDark() {
  return getMiroruThemeDark().copyWith(
    iconButtonTheme: IconButtonThemeData(
      style: IconButton.styleFrom(
        backgroundColor: Colors.white,
        shape: const CircleBorder(),
        padding: const EdgeInsets.all(10),
        foregroundColor: Colors.black,
      ),
    ),
  );
}