Remove all native base dependencies.

This commit is contained in:
Patrick Fic
2021-03-11 11:53:42 -07:00
parent 373f215ffa
commit 59f6605a40
19 changed files with 34349 additions and 7016 deletions

View File

@@ -1,4 +1,4 @@
import { Text } from "native-base";
import { Title } from "react-native-paper";
import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
import { StyleSheet, View } from "react-native";
@@ -36,7 +36,7 @@ export function SignInErrorAlertComponent({ signInError }) {
}, [signInError, setErrorText]);
return (
<View>
{errorText ? <Text style={localStyles.alert}>{errorText}</Text> : null}
{errorText ? <Title style={localStyles.alert}>{errorText}</Title> : null}
</View>
);
}