浏览代码

Add padding at ends of scrollview

ashilkn 2 年之前
父节点
当前提交
aadfce89d0
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      lib/ui/components/bottom_action_bar/bottom_action_bar_widget.dart

+ 2 - 0
lib/ui/components/bottom_action_bar/bottom_action_bar_widget.dart

@@ -53,6 +53,7 @@ class BottomActionBarWidget extends StatelessWidget {
             child: Row(
               crossAxisAlignment: CrossAxisAlignment.start,
               children: const [
+                SizedBox(width: 8),
                 SelectionOptionButton(
                   name: "Share link",
                   icon: Icons.link_outlined,
@@ -74,6 +75,7 @@ class BottomActionBarWidget extends StatelessWidget {
                   name: "Favorite",
                   icon: Icons.favorite_border_outlined,
                 ),
+                SizedBox(width: 8),
               ],
             ),
           ),