Skip to content

Commit

Permalink
Merge branch '173-frontend-create-new-workout-functionality' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Hen authored Apr 14, 2024
2 parents b7321a7 + 4dddd29 commit 5ca69fc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/expo/src/app/workout/startExisting/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { router } from 'expo-router'
import { SafeAreaView } from 'react-native-safe-area-context'
import WorkoutList from '~/components/workout/workoutList'


const styles = StyleSheet.create({
container: {
flex: 1,
Expand All @@ -13,6 +14,8 @@ const styles = StyleSheet.create({

export default function createNew() {



return (
<SafeAreaView style={styles.container}>
<View className="flex-row justify-evenly h-[40px] items-center">
Expand All @@ -32,6 +35,11 @@ export default function createNew() {
<View className="mb-[25px] py-[20px]">
<WorkoutList />
</View>

<View style={{height: 1, backgroundColor: '#CACACA', marginHorizontal: 13, opacity: 0.3, top: 10, }}/>
<ScrollView className="mb-[25px] py-[20px]">
<WorkoutList />
</ScrollView>
</SafeAreaView>
)
}

0 comments on commit 5ca69fc

Please sign in to comment.