This commit is contained in:
Korbs 2023-06-09 03:00:28 -04:00
parent 9c8da8d8ed
commit 79e0d1b14f
No known key found for this signature in database
6 changed files with 74 additions and 90 deletions

55
App.js
View file

@ -1,11 +1,11 @@
// Import Stuff // Import Stuff
/// React Native /// React Native
import * as React from 'react' import * as React from 'react'
import { useState } from "react"; import { useState } from "react"
import { Alert, AsyncStorage, Text, TextInput, UseState, View } from 'react-native' import { Alert, AsyncStorage, Text, TextInput, UseState, View } from 'react-native'
import { SafeAreaView } from 'react-native-safe-area-context' import { SafeAreaView } from 'react-native-safe-area-context'
import { WebView } from 'react-native-webview' import { WebView } from 'react-native-webview'
import Modal from "react-native-modal"; import Modal from "react-native-modal"
/// React Native Navigation /// React Native Navigation
import { NavigationContainer } from '@react-navigation/native' import { NavigationContainer } from '@react-navigation/native'
@ -26,35 +26,10 @@ const Tab = createMaterialTopTabNavigator()
let InstanceURL = 'https://design.penpot.app/' let InstanceURL = 'https://design.penpot.app/'
_storeData = async () => {
try {
await AsyncStorage.setItem(
'I like to save it.',
);
} catch (error) {
// Error saving data
}
};
_retrieveData = async () => {
try {
const value = await AsyncStorage.getItem('TASKS');
if (value !== null) {
// We have data!!
console.log(value);
}
} catch (error) {
// Error retrieving data
}
};
// App // App
export default function App() { export default function App() {
const [isModalVisible, setModalVisible] = useState(false); const [isModalVisible, setModalVisible] = useState(false)
const ToggleSettingModal = () => {setModalVisible(!isModalVisible)}
const ToggleSettingModal = () => {
setModalVisible(!isModalVisible);
};
const [tabs, setTabs] = React.useState([ const [tabs, setTabs] = React.useState([
{ {
@ -64,7 +39,7 @@ export default function App() {
]) ])
const addNewTab = () => { const addNewTab = () => {
setTabs(tabs => [ setTabs(tabs => [
...tabs, tabs,
{ {
name : "" + (parseInt(tabs.pop().name.replace("", "")) + 1), name : "" + (parseInt(tabs.pop().name.replace("", "")) + 1),
component : TabScreen, component : TabScreen,
@ -73,15 +48,30 @@ export default function App() {
} }
const remove = (route) => {setTabs(tabs => tabs.filter(tab => tab.name !== route.name))} const remove = (route) => {setTabs(tabs => tabs.filter(tab => tab.name !== route.name))}
function Loading() {
return (
<View>
<Text>Loading</Text>
</View>
)
}
function TabScreen({route}) { function TabScreen({route}) {
return ( return (
<SafeAreaView style={Styles.Container}> <SafeAreaView style={Styles.Container}>
<WebView <WebView
onError={() => Alert.alert("Something went wrong", "The page you are trying to load has either crashed or there is no connection. Please check your Instance setting to make sure the URL is correct.", [{text: 'OK'}])} onError={(syntheticEvent) => {const { nativeEvent } = syntheticEvent}}
renderError={() => Alert.alert("Something went wrong", "The page you are trying to load has either crashed or there is no connection. Please check your Instance setting to make sure the URL is correct.", [{text: 'OK'}])}
renderLoading={() => <Loading />}
startInLoadingState={true}
source={{ uri: InstanceURL }} source={{ uri: InstanceURL }}
javaScriptEnabled={true} javaScriptEnabled={true}
javaScriptEnabledAndroid={true} javaScriptEnabledAndroid={true}
scalesPageToFit={false} scalesPageToFit={false}
bounces={false}
pullToRefreshEnabled={false}
contentMode={'desktop'}
androidLayerType={'software'}
allowsBackForwardNavigationGestures allowsBackForwardNavigationGestures
style={{backgroundColor: '#202020'}} style={{backgroundColor: '#202020'}}
/> />
@ -130,7 +120,7 @@ export default function App() {
<TextInput <TextInput
style={Styles.InstanceForm} style={Styles.InstanceForm}
type="text" type="text"
// onChange={(e) => SetInstance(e.target.value)} onChange={(e) => SetInstance(e.target.value)}
placeholder="https://design.penpot.app/" placeholder="https://design.penpot.app/"
aria-label="InstanceURL" aria-label="InstanceURL"
/> />
@ -140,7 +130,6 @@ export default function App() {
</View> </View>
</View> </View>
</Modal> </Modal>
</NavigationContainer> </NavigationContainer>
) )
} }

View file

@ -5,7 +5,6 @@
"owner": "sudovanilla", "owner": "sudovanilla",
"version": "0.0.1", "version": "0.0.1",
"icon": "./assets/icon.png", "icon": "./assets/icon.png",
"githubUrl": "https://sudovanilla.com/code/Korbs/Penpot-App/",
"userInterfaceStyle": "automatic", "userInterfaceStyle": "automatic",
"scheme": "penpot", "scheme": "penpot",
"orientation": "landscape", "orientation": "landscape",
@ -44,6 +43,9 @@
"eas": { "eas": {
"projectId": "9f3d77d2-68f6-463f-909f-cb600ef6eeac" "projectId": "9f3d77d2-68f6-463f-909f-cb600ef6eeac"
} }
},
"updates": {
"url": "https://u.expo.dev/9f3d77d2-68f6-463f-909f-cb600ef6eeac"
} }
} }
} }

0
assets/splash.png Normal file → Executable file
View file

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -1,26 +1,20 @@
{ {
"cli": { "cli": {
"version": ">= 3.13.2" "version": ">= 3.13.2",
"promptToConfigurePushNotifications": false
}, },
"build": { "build": {
"development-simulator": {
"extends": "production",
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
}
},
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": { "preview": {
"distribution": "internal" "distribution": "internal"
}, },
"production": {} "production": {}
}, },
"submit": { "submit": {
"production": {} "production": {
"ios": {
"appleId": "ks@korbsstudio.com",
"appleTeamId": "F2M4QF2K4L"
}
}
} }
} }

View file

@ -9,19 +9,18 @@
"dependencies": { "dependencies": {
"@react-navigation/material-top-tabs": "^6.6.2", "@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6", "@react-navigation/native": "^6.1.6",
"expo": "~48.0.18", "expo": "~48.0.0",
"expo-dev-client": "~2.2.1",
"expo-splash-screen": "~0.18.2", "expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4", "expo-status-bar": "~1.4.4",
"expo-system-ui": "~2.2.1", "expo-system-ui": "~2.2.1",
"expo-updates": "~0.16.4",
"react": "18.2.0", "react": "18.2.0",
"react-native": "0.71.8", "react-native": "0.71.8",
"react-native-modal": "^13.0.1", "react-native-modal": "^13.0.1",
"react-native-pager-view": "^6.2.0",
"react-native-safe-area-context": "4.5.0", "react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0", "react-native-screens": "~3.20.0",
"react-native-tab-view": "^3.5.1", "react-native-tab-view": "^3.5.1",
"react-native-webview": "^12.2.0" "react-native-webview": "11.26.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.20.0" "@babel/core": "^7.20.0"