Added job select on Camera

This commit is contained in:
Patrick Fic
2021-02-08 19:19:23 -08:00
parent 280b8e38b5
commit 3a0c8b9a5a
13 changed files with 12506 additions and 8055 deletions

View File

@@ -4,6 +4,7 @@ import Logo from "../../assets/logo192.png";
import { useTranslation } from "react-i18next";
import { H1, Container, Content } from "native-base";
import styles from "../styles";
import { BarIndicator } from "react-native-indicators";
export default function ScreenSplash() {
const { t } = useTranslation();
@@ -17,6 +18,7 @@ export default function ScreenSplash() {
>
<Image style={localStyles.logo} source={Logo} />
<H1>{t("app.title")}</H1>
<BarIndicator count={5} color="dodgerblue" />
</Content>
</Container>
);