feat: add emptyList, SearchBar components and upgrade expo SDK#39
Conversation
hoangSTS
commented
Oct 8, 2025
- Add EmptyList and SearchBar components
- Upgrade Expo SDK
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| descriptionStyle, | ||
| }) => ( | ||
| <View style={[styles.container, style]}> | ||
| {icon && ( |
There was a problem hiding this comment.
you should use double negation for this
!!icon instead icon
| style={[styles.icon, { tintColor: iconColor, width: iconSize, height: iconSize }]} | ||
| /> | ||
| )} | ||
| {title && ( |
| } | ||
| autoCorrect={false} | ||
| returnKeyType="search" | ||
| {...rest} |
There was a problem hiding this comment.
I think we should support a button icon at the end of the input to clear all the text, and have a prop to enable/disable this