charts and bugs fix

This commit is contained in:
venbaittech 2025-03-24 17:46:45 +05:30
parent 1c8515709a
commit 23c290a9b8
5 changed files with 1570 additions and 1404 deletions

View File

@ -20,12 +20,12 @@ if (project.hasProperty('google-services.json')) {
def flutterVersionCode = localProperties.getProperty("flutter.versionCode")
if (flutterVersionCode == null) {
flutterVersionCode = "42"
flutterVersionCode = "43"
}
def flutterVersionName = localProperties.getProperty("flutter.versionName")
if (flutterVersionName == null) {
flutterVersionName = "1.0.41"
flutterVersionName = "1.0.42"
}
def keystorePropertiesFile = rootProject.file("key.properties")

File diff suppressed because it is too large Load Diff

View File

@ -777,9 +777,6 @@ class _FeedbackFormState extends ConsumerState<FeedbackForm>
}
Future<void> _submitFeedback() async {
setState(() {
isLoading = true;
});
if (_selectedEmojiIndex == null) {
setState(() {
_isSmileySelected = false;
@ -802,6 +799,10 @@ class _FeedbackFormState extends ConsumerState<FeedbackForm>
return;
}
setState(() {
isLoading = true;
});
final feedbackData = {
"userId": userId,
"ease_of_use": _easeOfUseRating,

View File

@ -357,20 +357,18 @@ class NotificationTile extends StatelessWidget {
print('isPushed $isPushed , $id');
return GestureDetector(
onTap: isPushed
? () {
readedNotification(userID, id);
final encodedKey = Uri.encodeQueryComponent('notification');
context.go('/notification_details', extra: {
'title': title,
'message': message,
'date': date,
'category': category,
'id': id,
'backNavigation': encodedKey
});
}
: null,
onTap: () {
readedNotification(userID, id);
final encodedKey = Uri.encodeQueryComponent('notification');
context.go('/notification_details', extra: {
'title': title,
'message': message,
'date': date,
'category': category,
'id': id,
'backNavigation': encodedKey
});
},
child: ListTile(
leading: isPushed
? const Icon(Icons.circle, size: 12, color: Color(0xFFFF274E))
@ -390,10 +388,8 @@ class NotificationTile extends StatelessWidget {
fontWeight: FontWeight.w400,
),
),
trailing: isPushed
? const Icon(Icons.arrow_forward_ios,
size: 16, color: Color(0xFF898C81))
: null,
trailing: const Icon(Icons.arrow_forward_ios,
size: 16, color: Color(0xFF898C81)),
),
);
}

View File

@ -1,7 +1,7 @@
name: uae_stat
description: "View statistics about the UAE from the Federal Center for Statistics and Competitiveness."
publish_to: "none"
version: 1.0.41+40
version: 1.0.42+43
environment:
sdk: ">=3.2.3 <4.0.0"