TF-2806 Disable rounded border of mailbox list on desktop
This commit is contained in:
@@ -23,6 +23,9 @@ class MailboxView extends BaseMailboxView {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Drawer(
|
return Drawer(
|
||||||
elevation: controller.responsiveUtils.isDesktop(context) ? 0 : 16.0,
|
elevation: controller.responsiveUtils.isDesktop(context) ? 0 : 16.0,
|
||||||
|
shape: controller.responsiveUtils.isDesktop(context)
|
||||||
|
? const RoundedRectangleBorder()
|
||||||
|
: null,
|
||||||
child: Scaffold(
|
child: Scaffold(
|
||||||
backgroundColor: controller.responsiveUtils.isWebDesktop(context)
|
backgroundColor: controller.responsiveUtils.isWebDesktop(context)
|
||||||
? AppColor.colorBgDesktop
|
? AppColor.colorBgDesktop
|
||||||
|
|||||||
Reference in New Issue
Block a user