77 lines
1.8 KiB
Dart
77 lines
1.8 KiB
Dart
final String tendersMockData = '''
|
|
{
|
|
"tenders": [
|
|
{
|
|
"tender_id": "KLF 2025/120",
|
|
"title": "Tender 1",
|
|
"description": "Description 1",
|
|
"created_time": "2021-01-01",
|
|
"deadline": "2025-06-15",
|
|
"location": "Sweden",
|
|
"type": "Self Apply",
|
|
"profile_match": 75,
|
|
"liked": false,
|
|
"disliked": false,
|
|
"rejected": false,
|
|
"submitted": false
|
|
},
|
|
{
|
|
"tender_id": "KLF 2025/121",
|
|
"title": "Tender 2",
|
|
"description": "Description 2",
|
|
"created_time": "2021-02-01",
|
|
"deadline": "2025-07-20",
|
|
"location": "Norway",
|
|
"type": "Invitation",
|
|
"profile_match": 85,
|
|
"liked": false,
|
|
"disliked": false,
|
|
"rejected": false,
|
|
"submitted": false
|
|
},
|
|
{
|
|
"tender_id": "KLF 2025/122",
|
|
"title": "Tender 3",
|
|
"description": "Description 3",
|
|
"created_time": "2021-03-01",
|
|
"deadline": "2025-08-10",
|
|
"location": "Finland",
|
|
"type": "Self Apply",
|
|
"profile_match": 65,
|
|
"liked": false,
|
|
"disliked": false,
|
|
"rejected": false,
|
|
"submitted": false
|
|
},
|
|
{
|
|
"tender_id": "KLF 2025/123",
|
|
"title": "Tender 4",
|
|
"description": "Description 4",
|
|
"created_time": "2021-04-01",
|
|
"deadline": "2025-09-05",
|
|
"location": "Denmark",
|
|
"type": "Invitation",
|
|
"profile_match": 90,
|
|
"liked": false,
|
|
"disliked": false,
|
|
"rejected": false,
|
|
"submitted": false
|
|
},
|
|
{
|
|
"tender_id": "KLF 2025/124",
|
|
"title": "Tender 5",
|
|
"description": "Description 5",
|
|
"created_time": "2021-05-01",
|
|
"deadline": "2025-10-12",
|
|
"location": "Iceland",
|
|
"type": "Self Apply",
|
|
"profile_match": 70,
|
|
"liked": false,
|
|
"disliked": false,
|
|
"rejected": false,
|
|
"submitted": false
|
|
}
|
|
]
|
|
}
|
|
''';
|