Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 31 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,43 @@
.expo/
# Dependencies
node_modules/

# Build output
dist/
build/
android/app/build/
ios/build/

# Debug logs
npm-debug.*
yarn-debug.*
yarn-error.*

# Signing keys and certificates
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/
package-lock.json
package.json
expo-env.d.ts

# IDE
.idea/
.vscode/
*.swp
*.swo

# macOS
.DS_Store

# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli
# React Native
*.hbc

# Buck
buck-out/
\.buckd/

# CocoaPods
ios/Pods/

# Temporary files
*.log
13 changes: 13 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from 'react';
import { StatusBar } from 'react-native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import TimerScreen from './src/screens/TimerScreen';

export default function App() {
return (
<SafeAreaProvider>
<StatusBar barStyle="light-content" backgroundColor="#232731" />
<TimerScreen />
</SafeAreaProvider>
);
}
36 changes: 2 additions & 34 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,4 @@
{
"expo": {
"name": "intervaltimerap",
"slug": "intervaltimerap",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router"
],
"experiments": {
"typedRoutes": true
}
}
"name": "IntervalTimer",
"displayName": "Interval Timer"
}
37 changes: 0 additions & 37 deletions app/(tabs)/_layout.tsx

This file was deleted.

102 changes: 0 additions & 102 deletions app/(tabs)/explore.tsx

This file was deleted.

6 changes: 0 additions & 6 deletions app/(tabs)/route.tsx

This file was deleted.

39 changes: 0 additions & 39 deletions app/+html.tsx

This file was deleted.

32 changes: 0 additions & 32 deletions app/+not-found.tsx

This file was deleted.

37 changes: 0 additions & 37 deletions app/_layout.tsx

This file was deleted.

Binary file removed assets/images/favicon.png
Binary file not shown.
Binary file removed assets/images/partial-react-logo.png
Binary file not shown.
Binary file removed assets/images/react-logo.png
Binary file not shown.
Binary file removed assets/images/react-logo@2x.png
Binary file not shown.
Binary file removed assets/images/react-logo@3x.png
Binary file not shown.
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: ['module:@react-native/babel-preset'],
};
Loading
Loading