fix collapsing labels

This commit is contained in:
Davide Scaini
2026-04-27 15:28:39 +02:00
parent 946da685e5
commit 87baf33815
+2 -1
View File
@@ -93,6 +93,7 @@ export default function SearchScreen() {
</View>
) : (
<FlatList
style={{ flex: 1 }}
data={activities}
keyExtractor={a => a.id}
renderItem={({ item }) => (
@@ -129,7 +130,7 @@ const styles = StyleSheet.create({
},
header: { color: '#fff', fontSize: 22, fontWeight: '700' },
count: { color: '#71717a', fontSize: 13 },
pillScroll: { flexGrow: 0 },
pillScroll: { flexGrow: 0, flexShrink: 0 },
pillRow: { flexDirection: 'row', gap: 8, paddingHorizontal: 16, paddingBottom: 10 },
pill: {
borderRadius: 20, borderWidth: 1, borderColor: '#3f3f46',