fix: no space on modal search bar

This commit is contained in:
Jakob Stornig 2024-01-05 00:21:37 +01:00
parent 36679279c1
commit c240febec8

View file

@ -49,7 +49,7 @@ const CategorySelectorModal: React.FC<CategorySelectorModalProps> = (props : Cat
<View>
<Text style={[styles.heading, {color: colors.primaryText}]}>{selectMulitple ? "Categories" : "Category"}</Text>
</View>
<TextInputBar placeholder='TypeToSearch' onChangeText={handleSearchText}></TextInputBar>
<TextInputBar placeholder='TypeToSearch' onChangeText={handleSearchText} style={{marginBottom: 10}}></TextInputBar>
<FlatList
data={filteredCategories}
keyExtractor={(item) => item.guid!}