1.3.7-2 - Test Build - Added progress for fetching file size.

This commit is contained in:
Patrick Fic
2022-06-23 09:16:54 -07:00
parent 9eb8a43884
commit 7ba64ea553
4 changed files with 52 additions and 30 deletions

View File

@@ -1,8 +1,9 @@
import React from "react";
import { useTranslation } from "react-i18next";
import { ActivityIndicator, Image, StyleSheet, View } from "react-native";
import { Title, Subheading } from "react-native-paper";
import { Title, Subheading, Divider } from "react-native-paper";
import Logo from "../../assets/logo192.png";
import SignOutButton from "../sign-out-button/sign-out-button.component";
export default function ScreenSplash({ noAccess }) {
const { t } = useTranslation();
@@ -18,6 +19,8 @@ export default function ScreenSplash({ noAccess }) {
<Subheading style={{ textAlign: "center" }}>
{t("app.nomobileaccess")}
</Subheading>
<Divider />
<SignOutButton />
</View>
) : (
<ActivityIndicator color="dodgerblue" size="large" />