mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
20 lines
619 B
Dart
20 lines
619 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
|
|
|
|
class PinCode extends PinCodeWidget {
|
|
PinCode(
|
|
void Function(String pin, PinCodeState state) onFullPin,
|
|
void Function(String pin) onChangedPin,
|
|
int initialPinLength,
|
|
bool hasLengthSwitcher,
|
|
Key key)
|
|
: super(
|
|
key: key,
|
|
onFullPin: onFullPin,
|
|
onChangedPin: onChangedPin,
|
|
hasLengthSwitcher: hasLengthSwitcher,
|
|
initialPinLength: initialPinLength);
|
|
|
|
@override
|
|
PinCodeState createState() => PinCodeState();
|
|
}
|