bigElevatedButtonTheme function

  1. @Deprecated('Use the bigElevatedButtonTheme of social_kit')
ThemeData bigElevatedButtonTheme(
  1. BuildContext context
)

ElevatedButton 을 넓고 높게 만들기

Implementation

@Deprecated('Use the bigElevatedButtonTheme of social_kit')
ThemeData bigElevatedButtonTheme(BuildContext context) {
  return Theme.of(context).copyWith(
    elevatedButtonTheme: ElevatedButtonThemeData(
      style: Theme.of(context).elevatedButtonTheme.style?.copyWith(
            minimumSize: MaterialStateProperty.all(
              const Size(double.infinity, 52),
            ),
          ),
    ),
  );
}