AppTableEditCell constructor
const
AppTableEditCell({
- Key? key,
- required String text,
- TextEditingController? controller,
- TextStyle textStyle = const TextStyle(color: Color(0xFF333333), fontSize: 14),
- List<
TextInputFormatter> inputFormatters = const [], - TextInputType? keyboardType,
- ValueChanged<
String?> ? onSubmitted,
Implementation
const AppTableEditCell({
Key? key,
required this.text,
this.controller,
this.textStyle = const TextStyle(color: Color(0xFF333333), fontSize: 14),
this.inputFormatters = const [],
this.keyboardType,
this.onSubmitted,
}) : super(key: key);