update
1
.gitignore
vendored
Normal file → Executable file
|
@ -3,3 +3,4 @@ yarn.lock
|
||||||
node_modules/
|
node_modules/
|
||||||
.expo/devices.json
|
.expo/devices.json
|
||||||
.expo/README.md
|
.expo/README.md
|
||||||
|
yarn-error.log
|
||||||
|
|
2
README.md
Normal file → Executable file
|
@ -1,6 +1,8 @@
|
||||||
# Penpot-App
|
# Penpot-App
|
||||||
> In progress
|
> In progress
|
||||||
|
|
||||||
|
![Early Preview](https://sudovanilla.com/content/images/penpot-app-early-opt.png)
|
||||||
|
|
||||||
The app is currently being developed for Android at the moment, iPadOS support is planned.
|
The app is currently being developed for Android at the moment, iPadOS support is planned.
|
||||||
|
|
||||||
Tested on OnePlus Tab.
|
Tested on OnePlus Tab.
|
||||||
|
|
0
assets/adaptive-icon.png
Normal file → Executable file
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
0
assets/favicon.png
Normal file → Executable file
Before Width: | Height: | Size: 956 B After Width: | Height: | Size: 956 B |
0
assets/icon.png
Normal file → Executable file
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
2
metro.config.js
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
const { getDefaultConfig } = require('expo/metro-config');
|
||||||
|
module.exports = getDefaultConfig(__dirname);
|
10
package.json
|
@ -1,19 +1,23 @@
|
||||||
{
|
{
|
||||||
"name": "penpot-app",
|
"name": "penpot-app",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"main": "node_modules/expo/AppEntry.js",
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "expo start",
|
"start": "expo start",
|
||||||
"android": "expo start --android",
|
"android": "expo run:android",
|
||||||
"ios": "expo start --ios"
|
"ios": "expo run:ios"
|
||||||
},
|
},
|
||||||
"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.18",
|
||||||
|
"expo-dev-client": "~2.2.1",
|
||||||
|
"expo-splash-screen": "~0.18.2",
|
||||||
|
"expo-status-bar": "~1.4.4",
|
||||||
"expo-system-ui": "~2.2.1",
|
"expo-system-ui": "~2.2.1",
|
||||||
"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-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",
|
||||||
|
|