April 2017
Intermediate to advanced
414 pages
8h 14m
English
When planning this app in the last chapter, we wrote that this list should also prominently display the user's set budget for the month along with a progress indicator showing how close they are to hitting their budget.
Using ProgressViewIOS, we can depict our user's progress toward their monthly limit. The following props will be used in this project:
You can render a ProgressViewIOS component like this:
<View> <ProgressViewIOS progress={ 0.75 } progressTintColor={ '#86B2CA' } /> </View>
In this section, we should update Expenses to do ...
Read now
Unlock full access