TF-161 Rotate the display in mobile view

This commit is contained in:
dab246
2021-10-19 08:43:14 +07:00
committed by Dat H. Pham
parent 8a06b8ba50
commit 3fd9a0cbda
10 changed files with 36 additions and 28 deletions
@@ -29,8 +29,8 @@ class ComposerView extends GetWidget<ComposerController> {
child: Scaffold(
backgroundColor: AppColor.primaryLightColor,
body: SafeArea(
right: false,
left: false,
right: responsiveUtils.isMobileDevice(context) && responsiveUtils.isLandscape(context),
left: responsiveUtils.isMobileDevice(context) && responsiveUtils.isLandscape(context),
child: Container(
margin: EdgeInsets.zero,
alignment: Alignment.topCenter,