merge issue
This commit is contained in:
commit
a0d7a733a4
@ -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
@ -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,
|
||||
|
||||
@ -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)),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user