|
|
|
|
@ -21,7 +21,11 @@ class ApprovalLevelfragment extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
if (wFHistory.isNotEmpty) wFHistory = wFHistory.reversed.toList();
|
|
|
|
|
if (wFHistory.isNotEmpty) {
|
|
|
|
|
//TODO: This COde is Written For Future. If Needed Enable to Filter The Empty Action Requests.
|
|
|
|
|
// wFHistory = wFHistory.where((item) => item.action != null && item.action!.isNotEmpty).toList();
|
|
|
|
|
wFHistory = wFHistory.reversed.toList();
|
|
|
|
|
}
|
|
|
|
|
return Container(
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
height: double.infinity,
|
|
|
|
|
|