I'm creating a calendar feature for our application that displays availability. For days that have both check-ins and check-outs, happening at 12:00PM, I want to represent the day as half green and half pink, like this:
https://i.sstatic.net/s97x7.png
To achieve this effect using CSS, we currently use the following code:
linear-gradient(to bottom right, #beffbe 50%, #ffbdc2 51%)
What would be the optimal way of implementing this?
Since I am utilizing expo, perhaps incorporating <LinearGradient>
would be helpful?