Fix alignment delete button in attachment item file of email view in RTL mode
(cherry picked from commit cdacfac2738e46255881da2293771850b959c782)
This commit is contained in:
@@ -27,7 +27,7 @@ class AttachmentFileTileBuilder extends StatelessWidget{
|
|||||||
final responsiveUtils = Get.find<ResponsiveUtils>();
|
final responsiveUtils = Get.find<ResponsiveUtils>();
|
||||||
|
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.only(right: 12),
|
padding: const EdgeInsetsDirectional.only(end: 12),
|
||||||
child: Material(
|
child: Material(
|
||||||
color: Colors.transparent,
|
color: Colors.transparent,
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
@@ -80,7 +80,7 @@ class AttachmentFileTileBuilder extends StatelessWidget{
|
|||||||
]),
|
]),
|
||||||
),
|
),
|
||||||
Align(
|
Align(
|
||||||
alignment: Alignment.bottomRight,
|
alignment: AlignmentDirectional.bottomEnd,
|
||||||
child: Material(
|
child: Material(
|
||||||
color: Colors.transparent,
|
color: Colors.transparent,
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
|
|||||||
Reference in New Issue
Block a user