SimpleVerificationBottomSheet constructor

SimpleVerificationBottomSheet({
  1. Key? key,
  2. required PinInputController controller,
  3. ValueChanged<String>? onInputComplete,
  4. dynamic onComplete(
    1. String
    )?,
  5. VoidCallback? onSkip,
  6. bool showSkipButton = false,
  7. String title = '간편 비밀번호를 입력해 주세요',
  8. String description = "계정 정보를 안전하게 지키고,\n다음부터는 간편하게 로그인할 수 있어요.",
  9. String? errorText,
  10. String shuffleText = '재배열',
  11. PinInputTheme? theme,
  12. PinDotStyle? dotStyle,
  13. TextStyle? titleStyle,
  14. TextStyle? descriptionStyle,
  15. TextStyle? errorTextStyle,
  16. TextStyle? numberTextStyle,
  17. TextStyle? buttonTextStyle,
  18. TextStyle? skipTextStyle,
})

Implementation

SimpleVerificationBottomSheet({
  super.key,
  required this.controller,
  this.onInputComplete,
  this.onComplete,
  this.onSkip,
  this.showSkipButton = false,
  this.title = '간편 비밀번호를 입력해 주세요',
  this.description = "계정 정보를 안전하게 지키고,\n다음부터는 간편하게 로그인할 수 있어요.",
  this.errorText,
  this.shuffleText = '재배열',
  PinInputTheme? theme,
  this.dotStyle,
  this.titleStyle,
  this.descriptionStyle,
  this.errorTextStyle,
  this.numberTextStyle,
  this.buttonTextStyle,
  this.skipTextStyle,
}) : theme = theme ?? PinInputTheme.defaultTheme();