Skip to content

Commit

Permalink
fix: changed title color
Browse files Browse the repository at this point in the history
  • Loading branch information
wisdomekpotu committed Jan 7, 2023
1 parent 5c124b0 commit af1c5f6
Showing 1 changed file with 24 additions and 17 deletions.
41 changes: 24 additions & 17 deletions screens/Budget.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,31 @@ export default function App() {
flex: 1,
justifyContent: 'center',
backgroundColor: '#F4F3E8',
paddingLeft: config.deviceWidth * 0.1,
}}
>
<Text
style={{
justifyContent: 'flex-start',
fontSize: 35,
color: '#1B463C',
paddingLeft: config.deviceWidth * 0.1,
}}
>
Do you have a {'\n'}budget?
</Text>
<View
style={{
width: config.deviceWidth - 60,
height: config.deviceHeight / 3,
paddingLeft: config.deviceWidth * 0.1,
height: config.deviceHeight / 2,
justifyContent: 'flex-start',
alignItems: 'left',
}}
>
<Pressable
style={{
backgroundColor: '#D9E7E4',
marginTop: config.deviceHeight / 33,
marginTop: config.deviceHeight / 16,
alignItems: 'center',
width: '40%',
height: 40,
Expand All @@ -48,7 +50,7 @@ export default function App() {
marginBottom: config.deviceHeight / 33,
}}
>
<Text style={{ color: '#1B463C' }}>Continue</Text>
<Text style={{ color: '#1B463C' }}>$8 - $15</Text>
</Pressable>

<Pressable
Expand All @@ -62,7 +64,7 @@ export default function App() {
marginBottom: config.deviceHeight / 33,
}}
>
<Text style={{ color: '#1B463C' }}>Continue</Text>
<Text style={{ color: '#1B463C' }}>$15 - $25</Text>
</Pressable>
<Pressable
style={{
Expand All @@ -76,7 +78,7 @@ export default function App() {
marginBottom: config.deviceHeight / 33,
}}
>
<Text>Continue</Text>
<Text>$25 - $35</Text>
</Pressable>
<Pressable
style={{
Expand All @@ -90,24 +92,29 @@ export default function App() {
marginBottom: config.deviceHeight / 33,
}}
>
<Text>Continue</Text>
<Text>$35 - $45</Text>
</Pressable>
</View>

<View style={{ alignItems: 'center' }}></View>
<Pressable
<View
style={{
backgroundColor: '#1B463C',
alignItems: 'center',
color: '#FFFFFF',
width: '60%',
height: 40,
justifyContent: 'center',
borderRadius: 25,
}}
>
<Text style={{ color: '#FFFFFF' }}>Continue</Text>
</Pressable>
<Pressable
style={{
backgroundColor: '#1B463C',
alignItems: 'center',
color: '#FFFFFF',
width: '80%',
height: 50,
justifyContent: 'center',
borderRadius: 25,
}}
>
<Text style={{ color: '#FFFFFF' }}>Continue</Text>
</Pressable>
</View>
</View>
);
}

0 comments on commit af1c5f6

Please sign in to comment.