Spaces:
Build error
Build error
File size: 24,827 Bytes
6e97887 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 |
/*
Right Vote - A web app for election prediction and manifesto comparison with machine learning and NLP.
Nilakna Warushavithana, September 2024
*/
import 'package:flutter/material.dart';
import 'dart:ui';
import 'package:http/http.dart' as http;
import 'dart:convert';
import 'package:pie_chart/pie_chart.dart';
class CompareScreenGenerator extends StatefulWidget {
final bool scrollToComparison;
const CompareScreenGenerator({super.key, this.scrollToComparison = false});
@override
_CompareScreenState createState() => _CompareScreenState();
}
class _CompareScreenState extends State<CompareScreenGenerator> {
final List<Map<String, dynamic>> _comparisonData = [
{
"Anura": {
"Economy": "Pro-market policies",
"Healthcare": "Universal healthcare",
"Education": "Increase funding for schools",
},
},
{
"Sajith": {
"Economy": "Regulation-focused",
"Healthcare": "Private healthcare",
"Education": "Voucher system",
},
},
{
"Ranil": {
"Economy": "2-Regulation-focused",
"Healthcare": "2-Private healthcare",
"Education": "2 -Voucher system",
},
},
];
late var _comparisonCategories =
_comparisonData[0].values.toList()[0].keys.toList();
late var _comparisonNames = [
_comparisonData[0],
_comparisonData[1],
_comparisonData[2]
].map((e) => e.keys.toList()[0]).toList();
late var _comparisonContent = [
_comparisonData[0].values.toList()[0].values.toList(),
_comparisonData[1].values.toList()[0].values.toList(),
_comparisonData[2].values.toList()[0].values.toList(),
];
final _comparisonBetter = [
["Candidate1", "Candidate2", "Candidate1"],
["Candidate2", "Candidate1", "Candidate2"],
];
/*the following functions are used for larger group of candidates, to compare two at a time.
current app shows all major 3 candidates side by side*/
// String? _selectedCandidate1;
// String? _selectedCandidate2;
final String apiUrl =
'YOUR_FIREBASE_FUNCTION_URL_HERE'; // Replace with your Firebase function URL
final String apiUrl_winpredict =
'YOUR_FIREBASE_FUNCTION_URL_HERE'; // Replace with your Firebase function URL
double anuraWinPercentage = 39.57;
double ranilWinPercentage = 21.36;
double sajithWinPercentage = 32.12;
bool isLoading = true;
// final ScrollController _scrollController = ScrollController();
// final GlobalKey comparisonKey = GlobalKey();
@override
void initState() {
super.initState();
// _selectedCandidate1 = _comparisonNames[0];
// _selectedCandidate2 = _comparisonNames[1];
// _fetchWinPrediction(); //for a real time win prediction
// _fetchComparisonData(
// ["Candidate1", "Candidate2"]); // Pass candidate IDs or names
// Scroll to the comparison area if the parameter is true
// WidgetsBinding.instance.addPostFrameCallback((_) {
// if (widget.scrollToComparison) {
// _scrollToComparison();
// }
// });
}
// @override
// void dispose() {
// _scrollController.dispose();
// super.dispose();
// }
// Future<void> _fetchWinPrediction() async {
// try {
// final response = await http.get(Uri.parse(apiUrl + '/win-prediction'));
// if (response.statusCode == 200) {
// final Map<String, dynamic> responseData = json.decode(response.body);
// setState(() {
// anuraWinPercentage = responseData['anura'] ?? 0.0;
// ranilWinPercentage = responseData['ranil'] ?? 0.0;
// sajithWinPercentage = responseData['sajith'] ?? 0.0;
// isLoading = false;
// });
// } else {
// print('Error fetching prediction: ${response.statusCode}');
// }
// } catch (error) {
// print('Network error: $error');
// }
// }
void _fetchComparisonData(List<String> candidates) async {
try {
final response = await http.post(
Uri.parse(apiUrl + '/compare'),
headers: {'Content-Type': 'application/json'},
body: jsonEncode({"candidates": candidates}),
);
if (response.statusCode == 200) {
final Map<String, dynamic> responseData = json.decode(response.body);
setState(() {
_comparisonData.clear();
_comparisonData.addAll(responseData['comparison']);
_updateComparisonInfo();
});
} else {
// Handle error
print('Error fetching data: ${response.statusCode}');
}
} catch (error) {
// Handle network error
print('Network error: $error');
}
}
void _updateComparisonInfo() {
// Update the categories and candidate names based on the new comparison data
_comparisonCategories = _comparisonData[0].values.toList()[0].keys.toList();
_comparisonNames = [_comparisonData[0], _comparisonData[1]]
.map((e) => e.keys.toList()[0])
.toList();
_comparisonContent = [
_comparisonData[0].values.toList()[0].values.toList(),
_comparisonData[1].values.toList()[0].values.toList()
];
}
// void _scrollToComparison() {
// _scrollController.animateTo(
// _scrollController.position.maxScrollExtent, // Scroll to the end
// duration: Duration(seconds: 1),
// curve: Curves.easeInOut,
// );
// }
final _themeTopics = <List>[
[
'Public and Micro Finance',
'Industries',
'Technology',
'Legal Reform',
'Housing and Construction',
'Trade, Business, and SMEs',
'Public Administration'
],
[
'Industries',
'Housing and Construction',
'Technology',
'Land',
'Transportation',
'Power and Energy',
'Justice System',
'Science and Research',
'Mass Media',
'Public and Micro Finance',
'Water Supply',
'Ports and Shipping',
'Environmental Conservation and Mitigating Pollution',
'Urban Development',
'Legal Reform',
'Aviation',
'Labour Welfare and Regulation',
'Disaster Management',
'Public Administration'
],
[
'Child Development and Women\'s Affairs',
'Labour Welfare and Regulation',
'Community Support',
'Public and Micro Finance',
'Healthcare',
'Transportation',
'National Security',
'Housing and Construction',
'Foreign Affairs',
'Public Administration',
'Justice System',
'Urban Development'
],
[
'Sports Affairs',
'Cultural and Religious Affairs',
'Environmental Conservation and Mitigating Pollution',
'Public and Micro Finance',
'Foreign Employment',
'Parliament, Provincial Councils and Local Government',
'Mass Media',
'Foreign Affairs',
'Primary and Secondary Education',
'Public Administration',
'Water Supply',
'Trade, Business, and SMEs',
'Healthcare',
'SOE Reform'
],
[
'Livestock',
'Plantation Industries',
'Fisheries and Aquatic Resources',
'Trade, Business, and SMEs',
'Traditional and Modern Agriculture',
'Technology',
'Water Supply',
'Labour Welfare and Regulation',
'Public and Micro Finance',
'Land'
],
[
'SOE Reform',
'Parliament, Provincial Councils and Local Government',
'Public Administration',
'Land',
'Public and Micro Finance',
'Technology',
'Youth Affairs and Skills',
'Legal Reform',
'Foreign Affairs',
'Power and Energy'
],
[
'Public and Micro Finance',
'Tourism',
'Economic and Investment Zones',
'Trade, Business, and SMEs'
],
[
'Legal Reform',
'Justice System',
'National Security',
'Legal Enforcement',
'Police',
'Power and Energy',
'Parliament, Provincial Councils and Local Government',
'Cultural and Religious Affairs',
'Child Development and Women\'s Affairs',
'Healthcare',
'Rehabilitation and Prisons Reform'
],
[
'Public Administration',
'Labour Welfare and Regulation',
'Youth Affairs and Skills',
'Foreign Employment',
'Child Development and Women\'s Affairs',
'Community Support'
],
[
'Vocational Development',
'Higher Education',
'Primary and Secondary Education',
'Youth Affairs and Skills',
'Child Development and Women\'s Affairs',
'Labour Welfare and Regulation',
'Healthcare',
'Technology',
'Mass Media',
'Science and Research'
],
[
'Vocational Development',
'Higher Education',
'Primary and Secondary Education',
'Youth Affairs and Skills',
'Child Development and Women\'s Affairs',
'Labour Welfare and Regulation',
'Healthcare',
'Technology',
'Mass Media',
' Science and Research'
],
[
'Legal Enforcement',
'Justice System',
'Public Administration',
'Legal Reform',
'Public and Micro Finance'
],
[
'Healthcare',
'Medical Staff and Hospitals',
'Medicine',
'Indigenous Medicine',
'Child Development and Women\'s Affairs'
],
['Public and Micro Finance', 'Public Administration'],
[
'Legal Enforcement',
'Cultural and Religious Affairs',
'Land',
'Community Support'
],
];
Widget _buildComparisonTable() {
if (_comparisonData.isEmpty) {
return Center(child: CircularProgressIndicator());
}
return SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: DataTable(
columns: [
DataColumn(
label: Text(
'Theme',
style: TextStyle(fontWeight: FontWeight.bold),
)),
DataColumn(
label: Text(_comparisonNames[0] + ' \%',
style: TextStyle(fontWeight: FontWeight.bold))),
DataColumn(
label: Text(_comparisonNames[1] + ' \%',
style: TextStyle(fontWeight: FontWeight.bold))),
DataColumn(
label: Text(_comparisonNames[2] + ' \%',
style: TextStyle(fontWeight: FontWeight.bold))),
DataColumn(
label: Text('Focused Areas',
style: TextStyle(fontWeight: FontWeight.bold))),
],
rows: List<DataRow>.generate(
(_themes.length),
(index) => DataRow(cells: [
DataCell(Text(_themes[index])),
DataCell(Text(_scoresAnura[index].toString().toString())),
DataCell(Text(_scoresSajith[index].toString())),
DataCell(Text(_scoresRanil[index].toString())),
DataCell(Text(_themeTopics[index].toString())),
// DataCell(Text(_comparisonCategories[index])),
// DataCell(Text(_comparisonContent[0][index])),
// DataCell(Text(_comparisonContent[1][index])),
// DataCell(Text(_comparisonContent[2][index])),
// DataCell(Text(_comparisonBetter[0][index])),
])),
));
}
Widget _firstVoteChart() {
//remove hardcode these to get actual data
double othersWinPercentage =
100 - (anuraWinPercentage + ranilWinPercentage + sajithWinPercentage);
Map<String, double> dataMap = {
"Anura": anuraWinPercentage,
"Sajith": sajithWinPercentage,
"Ranil": ranilWinPercentage,
"Others": othersWinPercentage,
};
final colorList = <Color>[
Colors.pinkAccent,
Colors.green,
Colors.yellow,
Colors.grey,
];
return SizedBox(
height: 200, // Set height for the pie chart
child: PieChart(
dataMap: dataMap,
// animationDuration: Duration(milliseconds: 800),
chartLegendSpacing: 32,
// chartRadius: MediaQuery.of(context).size.width / 4,
colorList: colorList,
initialAngleInDegree: -90,
chartType: ChartType.disc,
ringStrokeWidth: 32,
// centerText: "1st Vote",
legendOptions: const LegendOptions(
// showLegendsInRow: true,
legendPosition: LegendPosition.right,
showLegends: true,
legendShape: BoxShape.circle,
// legendTextStyle: TextStyle(
// fontWeight: FontWeight.bold,
// ),
),
chartValuesOptions: const ChartValuesOptions(
showChartValueBackground: true,
showChartValues: true,
showChartValuesInPercentage: false,
showChartValuesOutside: false,
),
));
}
Widget _secondVotesChart() {
//remove hardcode these to get actual data
double othersWinPercentage =
100 - (anuraWinPercentage + ranilWinPercentage + sajithWinPercentage);
Map<String, double> dataMap = {
"Anura": 44.27, // put the actual value here
"Sajith": 39.59,
// "Ranil": ranils,
"Others": othersWinPercentage,
};
final colorList = <Color>[
Colors.pinkAccent,
// Colors.yellow,
Colors.green,
Colors.grey,
];
return SizedBox(
height: 200, // Set height for the pie chart
child: PieChart(
dataMap: dataMap,
// animationDuration: Duration(milliseconds: 800),
chartLegendSpacing: 32,
// chartRadius: MediaQuery.of(context).size.width / 4,
colorList: colorList,
initialAngleInDegree: -90,
chartType: ChartType.disc,
ringStrokeWidth: 32,
// centerText: "1st + 2nd vote",
legendOptions: const LegendOptions(
// showLegendsInRow: true,
legendPosition: LegendPosition.right,
showLegends: true,
legendShape: BoxShape.circle,
legendTextStyle: TextStyle(
fontWeight: FontWeight.bold,
// backgroundColor: Colors.white,
),
),
chartValuesOptions: const ChartValuesOptions(
showChartValueBackground: true,
showChartValues: true,
showChartValuesInPercentage: false,
showChartValuesOutside: false,
),
));
}
// the following function is used for larger group of candidates, to compare two at a time.
// Widget _selectCandidateButton() {
// return Row(
// mainAxisAlignment: MainAxisAlignment.spaceEvenly,
// children: [
// DropdownButton<String>(
// value: _selectedCandidate1,
// items: _comparisonNames
// .map((e) => DropdownMenuItem(
// child: Text(e),
// value: e,
// ))
// .toList(),
// onChanged: (value) {
// setState(() {
// _selectedCandidate1 = value;
// _fetchComparisonData([value!, _selectedCandidate2!]);
// });
// },
// ),
// DropdownButton<String>(
// value: _selectedCandidate2,
// items: _comparisonNames
// .map((e) => DropdownMenuItem(
// child: Text(e),
// value: e,
// ))
// .toList(),
// onChanged: (value) {
// setState(() {
// _selectedCandidate2 = value;
// _fetchComparisonData([_selectedCandidate1!, value!]);
// });
// },
// ),
// ],
// );
// }
Widget _buildTeamInfo() {
return Container(
width: double.infinity,
color: Colors.lightBlue[50],
child: Column(
children: [
SizedBox(height: 50.0),
Text('Developed by LLMinators', style: TextStyle(fontSize: 16)),
SizedBox(height: 16.0),
Text(
'#TeamLLMinators #AIChallenge #IEEEChallengeSphere #MachineLearning',
textAlign: TextAlign.center),
SizedBox(height: 16.0),
Text(
'This app is created for educational purposes only.',
textAlign: TextAlign.center,
),
SizedBox(height: 50.0),
],
),
);
}
Widget _firstVoteBox() {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: const Color.fromRGBO(255, 255, 255, 0.4),
),
padding: EdgeInsets.all(16.0),
child: Column(
children: [
_firstVoteChart(),
Text(
'Based on First Vote',
style: TextStyle(
fontSize: 16.0,
// fontWeight: FontWeight.bold
color: Colors.black,
),
)
],
),
);
}
Widget _secondVoteBox() {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: const Color.fromRGBO(255, 255, 255, 0.4),
),
padding: EdgeInsets.all(16.0),
child: Column(
children: [
_secondVotesChart(),
Text(
'Based on First and Second Votes',
style: TextStyle(
fontSize: 16.0,
// fontWeight: FontWeight.bold
color: Colors.black,
),
)
],
),
);
}
Widget _comparisonTableBox() {
return Container(
width: double.infinity,
padding: EdgeInsets.all(20.0),
margin: EdgeInsets.all(20.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: const Color.fromRGBO(225, 245, 254, 0.75),
),
alignment: Alignment.center,
child: Column(children: [_buildComparisonTable()]),
);
}
Widget _comparisonScoreBox() {
return Container(
width: double.infinity,
padding: EdgeInsets.all(20.0),
margin: EdgeInsets.all(20.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: const Color.fromRGBO(225, 245, 254, 0.75),
),
alignment: Alignment.center,
child: Row(
children: <Widget>[
Expanded(
flex: 5,
child: _comparisonScoreChart(),
),
Expanded(
flex: 5,
child: Column(
children: [
_selectThemes(),
SizedBox(height: 16.0),
Text(
'The Manifesto Comparator scores each candidate based on the volume of policies they offer within key themes, helping you see who aligns with your priorities'),
],
),
),
],
),
);
}
final _themes = [
'Taxation',
'Infrastructure',
'Social Protection',
'Supplementary',
'Agricultural',
'Governance',
'Economic Growth',
'Law and Order',
'Labour',
'Education',
'Trade and export',
'Corruption',
'Health',
'IMF Programme',
'Reconciliation',
];
List<int> _selectedIndexes = [];
var _comparisonScore = <double>[10, 10, 10];
final _scoresAnura = <double>[
26,
79,
51,
65,
70,
28,
64,
55,
36,
50,
67,
39,
71,
40,
0
];
final _scoresSajith = <double>[
74,
16,
33,
19,
20,
52,
14,
35,
50,
27,
25,
57,
21,
40,
17
];
final _scoresRanil = <double>[
0,
5,
16,
16,
10,
20,
22,
10,
14,
23,
8,
4,
8,
20,
83
];
void _onThemeSelected(int index) {
setState(() {
// If already selected, remove from the list, otherwise add
if (_selectedIndexes.contains(index)) {
_selectedIndexes.remove(index);
} else {
_selectedIndexes.add(index);
}
_updateComparisonScore();
});
}
void _updateComparisonScore() {
double sumAnura = 0;
double sumSajith = 0;
double sumRanil = 0;
// Calculate the sum of scores for selected indexes for each candidate
for (int index in _selectedIndexes) {
sumAnura += _scoresAnura[index];
sumSajith += _scoresSajith[index];
sumRanil += _scoresRanil[index];
}
// get percentage values
double totalScore = sumAnura + sumSajith + sumRanil;
double percentageAnura =
totalScore != 0 ? (sumAnura / totalScore) * 100 : 0;
double percentageSajith =
totalScore != 0 ? (sumSajith / totalScore) * 100 : 0;
double percentageRanil =
totalScore != 0 ? (sumRanil / totalScore) * 100 : 0;
// Update _comparisonScore list
_comparisonScore = [percentageAnura, percentageSajith, percentageRanil];
}
Widget _selectThemes() {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Wrap(
spacing: 8.0, // space between buttons
runSpacing: 8.0, // space between rows
children: List.generate(_themes.length, (index) {
return ChoiceChip(
label: Text(_themes[index]),
selected: _selectedIndexes.contains(index),
onSelected: (bool selected) {
_onThemeSelected(index);
},
);
}),
),
);
}
_comparisonScoreChart() {
Map<String, double> dataMap = {
"Anura": _comparisonScore[0], // put the actual value here
"Sajith": _comparisonScore[1],
"Ranil": _comparisonScore[2],
};
final colorList = <Color>[
Colors.pinkAccent,
// Colors.yellow,
Colors.green,
Colors.yellow,
];
return SizedBox(
height: 200, // Set height for the pie chart
child: PieChart(
dataMap: dataMap,
// animationDuration: Duration(milliseconds: 800),
chartLegendSpacing: 32,
// chartRadius: MediaQuery.of(context).size.width / 4,
colorList: colorList,
initialAngleInDegree: -90,
chartType: ChartType.disc,
ringStrokeWidth: 32,
legendOptions: const LegendOptions(
// showLegendsInRow: true,
legendPosition: LegendPosition.right,
showLegends: true,
legendShape: BoxShape.circle,
legendTextStyle: TextStyle(
fontWeight: FontWeight.bold,
// backgroundColor: Colors.white,
),
),
chartValuesOptions: const ChartValuesOptions(
showChartValueBackground: true,
showChartValues: true,
showChartValuesInPercentage: false,
showChartValuesOutside: false,
),
));
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(fit: StackFit.expand, children: <Widget>[
Image.asset(
"assets/bgimg.jpg", // Ensure this path is correct
fit: BoxFit.cover,
),
BackdropFilter(
filter: ImageFilter.blur(sigmaX: 6, sigmaY: 6),
child: Container(
color: Colors.black.withOpacity(0),
),
),
SingleChildScrollView(
// controller: _scrollController, // Scroll controller for scrolling to the comparison area. removed because of the change in design
child: Padding(
padding: const EdgeInsets.all(0),
child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
children: [
SizedBox(height: 25.0),
Text(
'Win Prediction',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
SizedBox(height: 20.0),
Row(
children: [_firstVoteBox(), _secondVoteBox()],
mainAxisAlignment: MainAxisAlignment.spaceEvenly),
SizedBox(height: 25.0),
Text(
'Manifesto Comparison',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.white),
),
SizedBox(height: 16.0), // Add some spacing
_comparisonScoreBox(),
// _selectCandidateButton(), /// to choose candidates from if manifestos trained for all the candidates
// SizedBox(height: 16.0),
_comparisonTableBox(),
SizedBox(height: 100.0),
_buildTeamInfo(),
],
),
),
),
]),
);
}
}
|