Question: I am trying to create this iPhone app myStats page using ReactNative and Javascript and this is what I have so far: import React from

I am trying to create this iPhone app "myStats" page using ReactNative and Javascript and this is what I have so far:
import React from 'react';
import { ScrollView, View, TouchableOpacity, StyleSheet, Text, Image } from 'react-native';
import { useNavigation } from '@react-navigation/native';
import BottomNavBar from './BottomNavBar';
import { FontAwesomeIcon } from '@fortawesome/react-native-fontawesome';
import { faPlus, faCheck } from '@fortawesome/free-solid-svg-icons';
const MyStats =()=>{
return (
My Stats
Dashboard
Journal
Walk
1673 steps
Workout
{/* Add your workout items here */}
Water
23oz
Calories
430 kcal
{/* Add your macro-nutrient items here */}
Medication
{/* Add your medication items here */}
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f5f5f5',
},
welcomeText: {
fontSize: 24,
fontWeight: 'bold',
margin: 20,
},
menu: {
flexDirection: 'row',
justifyContent: 'space-around',
marginBottom: 20,
},
menuItem: {
padding: 10,
backgroundColor: '#fff',
borderRadius: 20,
},
section: {
flexDirection: 'row',
justifyContent: 'space-around',
marginBottom: 20,
},
card: {
padding: 20,
backgroundColor: '#fff',
borderRadius: 20,
width: '45%',
alignItems: 'center',
},
cardTitle: {
fontSize: 18,
fontWeight: 'bold',
},
cardValue: {
fontSize: 22,
fontWeight: 'bold',
margin: 10,
},
icon: {
position: 'absolute',
right: 10,
top: 10,
},
//more styles as needed
});
export default MyStats;
I need help expanding this code so that it actually fully resembles the attached image. Thank you
 I am trying to create this iPhone app "myStats" page using

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!