Skip to content

Commit

Permalink
fix theme selection border
Browse files Browse the repository at this point in the history
  • Loading branch information
sgriff96 committed Aug 5, 2023
1 parent 80ea7e3 commit b63c8cc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
20 changes: 16 additions & 4 deletions ios/Memmy.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1461,8 +1461,14 @@
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "$(inherited) ";
OTHER_CPLUSPLUSFLAGS = "$(inherited) ";
OTHER_CFLAGS = (
"$(inherited)",
" ",
);
OTHER_CPLUSPLUSFLAGS = (
"$(inherited)",
" ",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
};
Expand Down Expand Up @@ -1516,8 +1522,14 @@
);
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_CFLAGS = "$(inherited) ";
OTHER_CPLUSPLUSFLAGS = "$(inherited) ";
OTHER_CFLAGS = (
"$(inherited)",
" ",
);
OTHER_CPLUSPLUSFLAGS = (
"$(inherited)",
" ",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ function ThemeSelectionScreen({ route }: IProps) {
<CCell
key={themeName}
cellStyle="RightDetail"
backgroundColor={theme.colors.fg}
titleTextColor={theme.colors.textPrimary}
rightDetailColor={theme.colors.textSecondary}
title={
<HStack space="sm">
<ThemeColors
Expand Down Expand Up @@ -96,6 +99,9 @@ function ThemeSelectionScreen({ route }: IProps) {
<CCell
key={themeName}
cellStyle="RightDetail"
backgroundColor={theme.colors.fg}
titleTextColor={theme.colors.textPrimary}
rightDetailColor={theme.colors.textSecondary}
title={
<HStack space="sm">
<ThemeColors
Expand Down

0 comments on commit b63c8cc

Please sign in to comment.