remove debug colors
This commit is contained in:
@@ -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]}
|
||||||
|
|||||||
Reference in New Issue
Block a user