| 1 | import 'package:cake_wallet/src/screens/transaction_details/transaction_details_list_item.dart'; |
| 2 | import 'package:flutter/foundation.dart'; |
| 3 | |
| 4 | class TextFieldListItem extends TransactionDetailsListItem { |
| 5 | TextFieldListItem({ |
| 6 | required String title, |
| 7 | required String value, |
| 8 | required this.onSubmitted, |
| 9 | Key? key, |
| 10 | }) : super( |
| 11 | title: title, |
| 12 | value: value, |
| 13 | key: key, |
| 14 | ); |
| 15 | |
| 16 | final Function(String value) onSubmitted; |
| 17 | } |