|
|
|
|
@ -64,7 +64,7 @@ class _LeaveBalanceState extends State<LeaveBalance> {
|
|
|
|
|
context,
|
|
|
|
|
title: LocaleKeys.leaveBalance.tr(),
|
|
|
|
|
),
|
|
|
|
|
body: Column(
|
|
|
|
|
body:SingleChildScrollView(child:Column(
|
|
|
|
|
children: [
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(21.0),
|
|
|
|
|
@ -76,8 +76,10 @@ class _LeaveBalanceState extends State<LeaveBalance> {
|
|
|
|
|
: (absenceTransList!.isEmpty
|
|
|
|
|
? Utils.getNoDataWidget(context).paddingOnly(top: 50)
|
|
|
|
|
: ListView(
|
|
|
|
|
physics: const BouncingScrollPhysics(),
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
|
|
|
padding: const EdgeInsets.all(21),
|
|
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
// BalancesDashboardWidget(LocaleKeys.currentLeaveBalance.tr(), true, selectedEmp: employeeId, showLoading: false),
|
|
|
|
|
// 12.height,
|
|
|
|
|
@ -113,7 +115,7 @@ class _LeaveBalanceState extends State<LeaveBalance> {
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)),
|
|
|
|
|
floatingActionButton: Container(
|
|
|
|
|
height: 54,
|
|
|
|
|
width: 54,
|
|
|
|
|
|