Add deletion reason

This commit is contained in:
vishnukvmd 2023-03-15 23:01:48 +05:30
parent 6e0bdbb233
commit 6a19d1e551

View file

@ -31,11 +31,12 @@ class _DeleteAccountPageState extends State<DeleteAccountPage> {
late final List<String> _deletionReason = [
_defaultSelection,
'Its missing a key feature that I need',
'The app or a certain feature does not \nbehave as I think it should',
'I found another service that I like better',
'I use a different account',
'My reason isnt listed',
];
final List<int> _reasonIndexesWhereFeedbackIsNecessary = [1, 4];
final List<int> _reasonIndexesWhereFeedbackIsNecessary = [1, 2, 5];
@override
Widget build(BuildContext context) {