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>();
|
||||
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(right: 12),
|
||||
padding: const EdgeInsetsDirectional.only(end: 12),
|
||||
child: Material(
|
||||
color: Colors.transparent,
|
||||
child: InkWell(
|
||||
@@ -80,7 +80,7 @@ class AttachmentFileTileBuilder extends StatelessWidget{
|
||||
]),
|
||||
),
|
||||
Align(
|
||||
alignment: Alignment.bottomRight,
|
||||
alignment: AlignmentDirectional.bottomEnd,
|
||||
child: Material(
|
||||
color: Colors.transparent,
|
||||
child: InkWell(
|
||||
|
||||
Reference in New Issue
Block a user