From 8e912a0a1c1baa7e9dca77e664c9741da2d366ab Mon Sep 17 00:00:00 2001 From: TylerC <86952204+roti-c137@users.noreply.github.com> Date: Tue, 22 Aug 2023 03:26:22 +0000 Subject: [PATCH] Fix Android text paddings --- src/input/index.tsx | 3 ++- src/sectionHeader/index.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/input/index.tsx b/src/input/index.tsx index 2fc414f..150d836 100644 --- a/src/input/index.tsx +++ b/src/input/index.tsx @@ -55,6 +55,7 @@ const styles = StyleSheet.create({ flex: 1, paddingHorizontal: 15, height: 34, - fontSize: 16 + fontSize: 16, + padding: 0 } }) \ No newline at end of file diff --git a/src/sectionHeader/index.tsx b/src/sectionHeader/index.tsx index be02300..d7df09b 100644 --- a/src/sectionHeader/index.tsx +++ b/src/sectionHeader/index.tsx @@ -12,7 +12,7 @@ const SectionHeader = ({name}: { name: string }) => { } const styles = StyleSheet.create({ - sectionHeader: {margin: 8, fontSize: 17, height: 20, width: '100%', color: '#999'} + sectionHeader: {margin: 8, fontSize: 17, width: '100%', color: '#999'} }) export default memo(SectionHeader) \ No newline at end of file