From 8beab7d84f5411221ef76d3c32a4b97e3a186231 Mon Sep 17 00:00:00 2001 From: Elham Rababah Date: Mon, 29 Mar 2021 15:23:30 +0300 Subject: [PATCH] finish drawer --- lib/widgets/doctor/my_schedule_widget.dart | 1 + lib/widgets/shared/app_drawer_widget.dart | 246 ++++++++++----------- lib/widgets/shared/drawer_item_widget.dart | 24 +- 3 files changed, 137 insertions(+), 134 deletions(-) diff --git a/lib/widgets/doctor/my_schedule_widget.dart b/lib/widgets/doctor/my_schedule_widget.dart index 25e794cf..c28cc8d3 100644 --- a/lib/widgets/doctor/my_schedule_widget.dart +++ b/lib/widgets/doctor/my_schedule_widget.dart @@ -23,6 +23,7 @@ class MyScheduleWidget extends StatelessWidget { children: [ Column( mainAxisAlignment: MainAxisAlignment.start, + crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( height: 10, diff --git a/lib/widgets/shared/app_drawer_widget.dart b/lib/widgets/shared/app_drawer_widget.dart index 84144f49..100e8c1d 100644 --- a/lib/widgets/shared/app_drawer_widget.dart +++ b/lib/widgets/shared/app_drawer_widget.dart @@ -31,14 +31,6 @@ class _AppDrawerState extends State { Helpers helpers = new Helpers(); ProjectViewModel projectsProvider; - // @override - // void didChangeDependencies() { - // super.didChangeDependencies(); - // // if (_isInit) { - // getDocProfile(); // TODO: Refactor this code to prevent errors in the cosole. - // // } - // _isInit = false; - // } @override Widget build(BuildContext context) { @@ -47,127 +39,112 @@ class _AppDrawerState extends State { return RoundedContainer( child: Container( color: Colors.white, - // margin: EdgeInsets.only(top: SizeConfig.heightMultiplier * 2), child: Drawer( child: Column(children: [ Expanded( flex: 4, child: ListView(padding: EdgeInsets.zero, children: [ Container( + margin: EdgeInsets.symmetric(horizontal: 20), height: SizeConfig.heightMultiplier * 50, - child: InkWell( - child: DrawerHeader( - child: Column( - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - Container( - child: Image.asset( - 'assets/images/logo.png', - ), - margin: EdgeInsets.only(top: 10, bottom: 15), - ), - SizedBox( - height: 1, - child: Container( - color: Colors.black26, - ), - ), - SizedBox(height: 15), - InkWell( - onTap: () { - Navigator.of(context) - .pushNamed(PROFILE, arguments: { - 'title': authProvider.doctorProfile.doctorName, - "doctorProfileall": authProvider.doctorProfile - }); - }, - child: Column( - children: [ - authProvider.doctorProfile != null - ? CircleAvatar( - radius: - SizeConfig.imageSizeMultiplier * 12, - // radius: (52) - child: ClipRRect( - borderRadius: BorderRadius.circular(50), - child: Image.network( - authProvider - .doctorProfile.doctorImageURL, - fit: BoxFit.fill, - width: 700, - ), - ), - backgroundColor: Colors.transparent, - ) - : SizedBox(), - authProvider.doctorProfile != null - ? Padding( - padding: EdgeInsets.only(top: 10), - child: AppText( - TranslationBase.of(context).dr + - authProvider - .doctorProfile?.doctorName, - fontWeight: FontWeight.bold, - color: Colors.black, - fontSize: SizeConfig.textMultiplier * 2, - )) - : SizedBox(), - ], - ), - ), - RaisedButton( - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(18.0), - side: BorderSide(color: Colors.red)), - child: AppText( - TranslationBase.of(context).logout, - color: Colors.white, - ), - onPressed: () async { - Navigator.pop(context); - await helpers.logout(); - projectsProvider.isLogin = false; - }, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Container( + child: Image.asset( + 'assets/images/dr_app_logo.png', + ), + margin: EdgeInsets.only(top: 10, bottom: 15), + ), + SizedBox(height: 15), + if (authProvider.doctorProfile != null) + InkWell( + onTap: () { + Navigator.of(context).pushNamed(PROFILE, arguments: { + 'title': authProvider.doctorProfile.doctorName, + "doctorProfileall": authProvider.doctorProfile + }); + }, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Padding( + padding: EdgeInsets.only(top: 10), + child: AppText( + TranslationBase.of(context).dr + + authProvider.doctorProfile?.doctorName, + fontWeight: FontWeight.bold, + color: Color(0xFF2E303A), + fontFamily: 'Poppins', + fontSize: SizeConfig.textMultiplier * 2.5, + ), + ), + Padding( + padding: EdgeInsets.only(top: 5), + child: AppText( + authProvider.doctorProfile?.clinicDescription, + fontWeight: FontWeight.w600, + color: Color(0xFF2E303A), + fontSize: SizeConfig.textMultiplier * 2, + fontFamily: 'Poppins', + )) + ], ), - ], + ), + SizedBox(height: 15), + InkWell( + child: DrawerItem( + TranslationBase.of(context).rescheduleLeaves, + // " or " + + // TranslationBase.of(context).leaves, + + DoctorApp.leaves, + // subTitle: , + ), + onTap: () { + Navigator.pop(context); + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => AddRescheduleLeavScreen(), + // MyReferredPatient(), + )); + }, ), - ), + ], ), ), - InkWell( - child: DrawerItem( - TranslationBase.of(context).settings, Icons.settings), - onTap: () { - Navigator.pop(context); - Navigator.of(context).pushNamed(SETTINGS); - }, + SizedBox( + height: 40, ), - InkWell( - child: DrawerItem( - TranslationBase.of(context).reschedule, - DoctorApp.leaves, - subTitle: TranslationBase.of(context).leaves, + Container( + margin: EdgeInsets.symmetric(horizontal: 20), + child: Column( + children: [ + InkWell( + child: DrawerItem( + TranslationBase.of(context).logout, Icons.settings), + onTap: () async { + Navigator.pop(context); + await helpers.logout(); + projectsProvider.isLogin = false; + }, + ), + InkWell( + child: DrawerItem( + projectsProvider.isArabic + ? TranslationBase.of(context).lanEnglish + : TranslationBase.of(context).lanArabic, + DoctorApp.qr_code), + onTap: () { + if (projectsProvider.isArabic) + projectsProvider.changeLanguage('en'); + else + projectsProvider.changeLanguage('ar'); + }, + ), + ], ), - onTap: () { - Navigator.pop(context); - - Navigator.push( - context, - MaterialPageRoute( - builder: (context) => AddRescheduleLeavScreen(), - // MyReferredPatient(), - )); - }, - ), - InkWell( - child: DrawerItem( - TranslationBase.of(context).qr + - TranslationBase.of(context).reader, - DoctorApp.qr_code), - onTap: () { - Navigator.pop(context); - Navigator.of(context).pushNamed(QR_READER); - }, ), ]), ), @@ -179,14 +156,35 @@ class _AppDrawerState extends State { child: Align( alignment: FractionalOffset.bottomCenter, child: Container( - child: Column( - children: [ - Text("Powered by"), - Image.asset( - 'assets/images/cs_logo_container.png', - width: SizeConfig.imageSizeMultiplier * 30, - ) - ], + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Container( + width: MediaQuery.of(context).size.width *0.3, + child: RichText( + text: TextSpan( + text: 'Powered by', + style: TextStyle( + color: Color(0xFF989898), + fontWeight: FontWeight.bold, + fontSize: SizeConfig.textMultiplier * 2, + fontFamily: 'Poppins',), + children: [ + TextSpan(text: ' Cloud Solutions', + style: TextStyle( + color: Color(0xFF2E303A), + fontSize: SizeConfig.textMultiplier * 2, + fontFamily: 'Poppins',), + ) + ] + ),), + ), + // Text("Powered by"), + Image.asset( + 'assets/images/cs_logo_container.png', + width: SizeConfig.imageSizeMultiplier * 20, + ) + ], )))) ])) ])), diff --git a/lib/widgets/shared/drawer_item_widget.dart b/lib/widgets/shared/drawer_item_widget.dart index 83afb860..84691f7f 100644 --- a/lib/widgets/shared/drawer_item_widget.dart +++ b/lib/widgets/shared/drawer_item_widget.dart @@ -26,7 +26,7 @@ class _DrawerItemState extends State { @override Widget build(BuildContext context) { return Container( - margin: EdgeInsets.only(top: 5, bottom: 5, left: 10, right: 10), + margin: EdgeInsets.only(top: 5, bottom: 5, left: 0, right: 0), child: Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ @@ -39,15 +39,19 @@ class _DrawerItemState extends State { crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start, children: [ - AppText( - widget.title, - color: widget.color ?? Colors.black, - textOverflow: TextOverflow.ellipsis, - // fontWeight: FontWeight.bold, - // margin: 5, - marginLeft: 5, - marginRight: 5, - fontSize: SizeConfig.textMultiplier * 2.3, + Container( + width: MediaQuery.of(context).size.width *0.45, + child: Expanded( + child: AppText( + widget.title, + marginLeft: 5, + marginRight: 5, + color:widget.color ??Color(0xFF2E303A), + fontSize: SizeConfig.textMultiplier * 2.0, + fontFamily: 'Poppins', + fontWeight: FontWeight.bold, + ), + ), ), AppText( widget.subTitle,