diff --git a/lib/new_views/pages/land_page/widgets/request_item_view_list.dart b/lib/new_views/pages/land_page/widgets/request_item_view_list.dart index ca349b17..31824b13 100644 --- a/lib/new_views/pages/land_page/widgets/request_item_view_list.dart +++ b/lib/new_views/pages/land_page/widgets/request_item_view_list.dart @@ -41,10 +41,10 @@ class RequestItemViewList extends StatelessWidget { ? PpmItemView(list[index]) : isAssetTransfer ? AssetItemView(list[index]) - : Container( + : const SizedBox( height: 100, width: double.infinity, - color: Colors.grey, + // color: Colors.transparent, ); }, separatorBuilder: (cxt, index) => 8.height, diff --git a/lib/views/widgets/pentry/pentry_ppm_check_list_form.dart b/lib/views/widgets/pentry/pentry_ppm_check_list_form.dart index acb21a94..b82b0281 100644 --- a/lib/views/widgets/pentry/pentry_ppm_check_list_form.dart +++ b/lib/views/widgets/pentry/pentry_ppm_check_list_form.dart @@ -25,7 +25,7 @@ class _PentryPMChecklistFormState extends State { @override Widget build(BuildContext context) { - final list = widget.models?? [];//.where((element) => element.task != null)?.toList(); + final list = widget.models?? []; return (list?.isEmpty ?? true) ? context.translation.noDataFound.heading5(context).center : ListView.builder( diff --git a/pubspec.yaml b/pubspec.yaml index 6e45fa99..b82dcd6b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.2.3+10 +version: 1.2.4+11 environment: sdk: ">=2.7.0 <3.0.0"