bug fixed & 1.3.0+12 sent for UAT

design_3.0_latest
Sikander Saleem 1 year ago
parent 426d47b64c
commit c9ce003b29

@ -100,7 +100,7 @@ class _DashboardViewState extends State<DashboardView> {
_scrollController.addListener(() async { _scrollController.addListener(() async {
if (_scrollController.position.pixels == _scrollController.position.maxScrollExtent && !_dashBoardProvider.isDetailLoading) { if (_scrollController.position.pixels == _scrollController.position.maxScrollExtent && !_dashBoardProvider.isDetailLoading) {
_dashBoardProvider.pageNum = _dashBoardProvider.pageNum + 1; _dashBoardProvider.pageNum = _dashBoardProvider.pageNum + 1;
_dashBoardProvider.getRequestDetail(usersType: user.type!, showLoader: false, status: _dashBoardProvider.currentListIndex); _dashBoardProvider.getRequestDetail(usersType: user.type!, showLoader: false, status: _dashBoardProvider.tabs[_dashBoardProvider.currentListIndex].tag);
} }
}); });
} }

@ -78,7 +78,7 @@ class _PpmDetailsPageState extends State<PpmDetailsPage> {
if (widget.request.priority != null) 8.width, if (widget.request.priority != null) 8.width,
StatusLabel( StatusLabel(
label: ppm.visitStatusName, label: ppm.visitStatusName,
id: ppm.deviceStatusId!.toInt(), id: ppm.visitStatusId!.toInt(),
textColor: AppColor.getRequestStatusTextColorByName(context, ppm.visitStatusName!), textColor: AppColor.getRequestStatusTextColorByName(context, ppm.visitStatusName!),
backgroundColor: AppColor.getRequestStatusColorByName(context, ppm.visitStatusName!), backgroundColor: AppColor.getRequestStatusColorByName(context, ppm.visitStatusName!),
), ),

@ -73,7 +73,7 @@ class _PentryTBSFormState extends State<PentryTBSForm> {
8.height, 8.height,
if (totalWorkingHours > 0.0) ...[ if (totalWorkingHours > 0.0) ...[
Container( Container(
height: 50.toScreenHeight, height: 56.toScreenHeight,
padding: EdgeInsets.symmetric(horizontal: 16.toScreenWidth), padding: EdgeInsets.symmetric(horizontal: 16.toScreenWidth),
alignment: Alignment.centerLeft, alignment: Alignment.centerLeft,
decoration: BoxDecoration( decoration: BoxDecoration(
@ -91,7 +91,7 @@ class _PentryTBSFormState extends State<PentryTBSForm> {
), ),
Text( Text(
" ${formatDuration(totalWorkingHours.round())}", " ${formatDuration(totalWorkingHours.round())}",
style: Theme.of(context).textTheme.bodyLarge, style: Theme.of(context).textTheme.bodyMedium,
), ),
], ],
), ),

@ -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. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at # Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.2.3+10 version: 1.3.0+12
environment: environment:
sdk: ">=3.5.0 <4.0.0" sdk: ">=3.5.0 <4.0.0"

Loading…
Cancel
Save