GabrielPlus / fursa-mobile-app

0 stars 4 forks source link

Removing Horizantal line in Popular jobs Crad #2

Closed GabrielPlus closed 1 week ago

GabrielPlus commented 1 week ago

Your main objective is to set the horizantal scrolling to false...so as when the card is being slided right or left the bottom smalll horrizantal line should be invisible

This is the part of the file you should be working on The file is fursa-mobile-app/components/home/popular/Popularjobs.jsx

         ```
<FlatList
        data={data}
        renderItem={({ item }) => (
          <PopularJobCard
            item={item}
            selectedJob={selectedJob}
            handleCardPress={handleCardPress}
          />
        )}
        keyExtractor={(item) => item.job_id}
        contentContainerStyle={{ columnGap: SIZES.medium }}
        horizontal
      />
GabrielPlus commented 1 week ago

Screenshot 2024-11-16 234857