did some more cleanup of the interface and UI interactions.
This commit is contained in:
parent
bf3923b4b9
commit
fe927b44ad
23
app/app.tsx
Normal file
23
app/app.tsx
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import { LinkingOptions, NavigationContainer } from "@react-navigation/native";
|
||||||
|
import { Text } from "react-native";
|
||||||
|
import * as Linking from "expo-linking";
|
||||||
|
import Root from "./+html";
|
||||||
|
|
||||||
|
const prefix = Linking.createURL("/");
|
||||||
|
|
||||||
|
const linking : LinkingOptions<any> = {
|
||||||
|
prefixes: [
|
||||||
|
"tech.damngood.PliWould", prefix,
|
||||||
|
],
|
||||||
|
config: {
|
||||||
|
screens: {}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
function App() {
|
||||||
|
return (
|
||||||
|
<NavigationContainer linking={linking} fallback={<Text>Loading...</Text>}>
|
||||||
|
<Root />
|
||||||
|
</NavigationContainer>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user