From f602d94963be3e7d77ec81f4655ed10b87704044 Mon Sep 17 00:00:00 2001 From: PARKGEONTAE <112490505+prkgnt@users.noreply.github.com> Date: Wed, 22 May 2024 14:16:01 +0900 Subject: [PATCH 1/3] =?UTF-8?q?refactor/=20Card=20=EC=8A=A4=ED=81=AC?= =?UTF-8?q?=EB=A6=B0=20=ED=95=98=EB=8B=A8=20=EB=A7=88=EC=A7=84=EC=9D=84=20?= =?UTF-8?q?Footer=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/screens/Card.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/screens/Card.tsx b/src/components/screens/Card.tsx index b87054f..2955cab 100644 --- a/src/components/screens/Card.tsx +++ b/src/components/screens/Card.tsx @@ -8,9 +8,11 @@ const { width, height } = Dimensions.get("window"); const Container = styled.View` width: ${width}px; - margin-bottom: 25px; `; const ContentContainer = styled.FlatList``; +const Footer = styled.View` + height: 25px; +`; const Card = ({ babb }: { babb: BabbProps }) => { return ( @@ -29,6 +31,7 @@ const Card = ({ babb }: { babb: BabbProps }) => { )} + ListFooterComponent={() =>