SimpleVerificationBottomSheet constructor
SimpleVerificationBottomSheet({
- Key? key,
- required PinInputController controller,
- ValueChanged<
String> ? onInputComplete, - VoidCallback? onSkip,
- bool showSkipButton = false,
- String title = '간편 비밀번호를 입력해 주세요',
- String description = "계정 정보를 안전하게 지키고,\n다음부터는 간편하게 로그인할 수 있어요.",
- String? errorText,
- String shuffleText = '재배열',
- PinInputTheme? theme,
- PinDotStyle? dotStyle,
- TextStyle? titleStyle,
- TextStyle? descriptionStyle,
- TextStyle? errorTextStyle,
- TextStyle? numberTextStyle,
- TextStyle? buttonTextStyle,
- TextStyle? skipTextStyle,
Implementation
SimpleVerificationBottomSheet({
super.key,
required this.controller,
this.onInputComplete,
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();