import React from "react"; import { Text, Link, HStack, Center, Heading, Switch, useColorMode, NativeBaseProvider, extendTheme, VStack, Box, FormControl, Input, Button, } from "native-base"; import NativeBaseIcon from "./components/NativeBaseIcon"; import { Platform } from "react-native"; // Define the config const config = { useSystemColorMode: false, initialColorMode: "dark", }; // extend the theme export const theme = extendTheme({ config }); export default function App() { return (
Welcome To Katoikia Sign in to continue! Email ID Password Forget Password? I'm a new user. Sign Up
); } // Color Switch Component function ToggleDarkMode() { const { colorMode, toggleColorMode } = useColorMode(); return ( Dark Light ); }