In React Native, I am looking to create a dynamic list that displays the next seven days starting from today (assuming today is Monday):
<- My goal is to show a total of seven days.Today - Tomorrow - Wednesday - Thursday - Friday - Saturday - Sunday - Monday
When a user clicks on any of the items in the list, I want it to return the specific date. For example, clicking on Friday
should display 16.07.2021
or any other chosen format.
Thank you for taking the time to read this!