feat: add exercise header
This commit is contained in:
parent
498c955e4b
commit
965c0c157a
1 changed files with 12 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { FlatList, HStack, VStack } from "@gluestack-ui/themed";
|
import { FlatList, Heading, HStack, Text, VStack } from "@gluestack-ui/themed";
|
||||||
|
|
||||||
import { HomeHeader } from "@components/HomeHeader";
|
import { HomeHeader } from "@components/HomeHeader";
|
||||||
import { Group } from "@components/Group";
|
import { Group } from "@components/Group";
|
||||||
|
|
@ -32,6 +32,17 @@ export function Home() {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<VStack px="$8">
|
||||||
|
<HStack justifyContent="space-between" mb="$5" alignItems="center">
|
||||||
|
<Heading color="$gray200" fontSize="$md">
|
||||||
|
Exercícios
|
||||||
|
</Heading>
|
||||||
|
|
||||||
|
<Text color="$gray200" fontSize="$sm" fontFamily="$body">
|
||||||
|
4
|
||||||
|
</Text>
|
||||||
|
</HStack>
|
||||||
|
</VStack>
|
||||||
</VStack>
|
</VStack>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue