improvement.

merge-update-with-lab-changes
Sikander Saleem 5 years ago
parent b78f8f76db
commit 363cf78884

@ -55,7 +55,8 @@ class _DentalComplaintsState extends State<DentalComplaints> {
showNewAppBarTitle: true, showNewAppBarTitle: true,
backgroundColor: CustomColors.appBackgroudGreyColor, backgroundColor: CustomColors.appBackgroudGreyColor,
body: Container( body: Container(
child: !hasDentalPlan ? ListView.separated( child: !hasDentalPlan
? ListView.separated(
itemCount: complaintsList.length, itemCount: complaintsList.length,
itemBuilder: (BuildContext context, int index) { itemBuilder: (BuildContext context, int index) {
return Container( return Container(
@ -67,11 +68,12 @@ class _DentalComplaintsState extends State<DentalComplaints> {
}, },
separatorBuilder: (BuildContext context, int index) { separatorBuilder: (BuildContext context, int index) {
return Padding( return Padding(
padding: const EdgeInsets.only(left: 14,right: 14), padding: const EdgeInsets.only(left: 14, right: 14),
child: mDivider(Colors.grey), child: mDivider(Colors.grey),
); );
}, },
) : Container( )
: Container(
child: SingleChildScrollView( child: SingleChildScrollView(
child: Column( child: Column(
children: [ children: [

Loading…
Cancel
Save