remove debug colors

This commit is contained in:
Samuel Newman
2025-04-22 14:56:41 +03:00
parent 805949e639
commit f47c9c0958
+2 -7
View File
@@ -255,12 +255,11 @@ export const ScrollableInner = React.forwardRef<ScrollView, DialogInnerProps>(
return ( return (
<KeyboardAwareScrollView <KeyboardAwareScrollView
style={{backgroundColor: 'blue'}}
contentContainerStyle={[ contentContainerStyle={[
a.pt_2xl, a.pt_2xl,
a.px_xl, a.px_xl,
{paddingBottom}, {paddingBottom},
{backgroundColor: 'red'},
contentContainerStyle, contentContainerStyle,
]} ]}
ref={ref} ref={ref}
@@ -318,16 +317,12 @@ export const InnerFlatList = React.forwardRef<
} }
} }
console.log('footerHeight', footerHeight)
return ( return (
<ScrollProvider onScroll={onScroll}> <ScrollProvider onScroll={onScroll}>
<List <List
keyboardShouldPersistTaps="handled" keyboardShouldPersistTaps="handled"
bounces={nativeSnapPoint === BottomSheetSnapPoint.Full} bounces={nativeSnapPoint === BottomSheetSnapPoint.Full}
ListFooterComponent={ ListFooterComponent={<View style={{height: footerHeight}} />}
<View style={{height: footerHeight, backgroundColor: 'green'}} />
}
ref={ref} ref={ref}
{...props} {...props}
style={[style]} style={[style]}