Improved onboarding page

This commit is contained in:
Keannu Christian Bernasol 2023-07-06 16:43:50 +08:00
parent cf08dab685
commit f4ca96e35d
4 changed files with 104 additions and 41 deletions

View file

@ -1,7 +1,6 @@
import * as React from "react";
import { Pressable, GestureResponderEvent } from "react-native";
import styles from "../../styles";
import { colors } from "../../styles";
export interface props {
children: React.ReactNode;

View file

@ -0,0 +1,3 @@
export default function isStringEmpty(str: string) {
return str === "" || str === null || str === undefined;
}