MultiSelected List in React Native
Saad
/ December 10, 2020
In today's code-read, I read through how to implement multi-selected inputs. All we need to do is to control an array with selected items. let's say in our demo user can select his favorite brands from a list of options. First, we need to show all the inputs to the...
Read More
Dynamically add height to the ScrollView with Sticky Footer
Saad
/ December 8, 2020
In another post, we have seen how to add a sticky footer with ScrollView. One problem occurs if we put a sticky footer in the ScrollView, is that the last part of ScrollView gets hidden/ gets overlapped with the sticky footer. We need to add a proper padding-bottom to the...
Read More
Sticky footer in React Native ScrollView
Saad
/ December 7, 2020
Let's say you have a ScrollView and you want a footer to be sticky in that ScrollView for the users to see that all the time. Whether they are scrolling to top or bottom. In this short article, we will see how can we achieve this. Snack code is embedded...
Read More