InputView constructor
const
InputView({
- Key? key,
- int? maxLines,
- int? maxLength,
- String? placeholder,
- required String title,
- required dynamic confirmAction(
- String output
- String? cancelText,
- String? confirmText,
- Function? cancelAction,
- TextStyle? titleTextStyle,
- TextStyle? placeholderStyle,
- TextStyle? cancelTextStyle,
- TextStyle? confirmTextStyle,
Implementation
const InputView({
Key? key,
this.maxLines,
this.maxLength,
this.placeholder,
required this.title,
required this.confirmAction,
this.cancelText,
this.confirmText,
this.cancelAction,
this.titleTextStyle,
this.placeholderStyle,
this.cancelTextStyle,
this.confirmTextStyle,
}) : super(key: key);