Skip to content

Commit b6f6352

Browse files
committed
add react-strict-animated example app
This diff adds an example app showing off how to use the react-strict-animated library in an expo app. Currently when the app renders on the web there are some animation issues but the API calls are correct and I'll be addressing the composite animation issues in a later diff.
1 parent 7157a02 commit b6f6352

31 files changed

Lines changed: 1602 additions & 63 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
> Why do I have a folder named ".expo" in my project?
2+
The ".expo" folder is created when an Expo project is started using "expo start" command.
3+
> What do the files contain?
4+
- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds.
5+
- "settings.json": contains the server configuration that is used to serve the application manifest.
6+
> Should I commit the ".expo" folder?
7+
No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine.
8+
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"devices": []
3+
}
Loading
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
** BUILD FAILED **
2+
3+
4+
The following build commands failed:
5+
PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock /Users/vincentriemer/Library/Developer/Xcode/DerivedData/animatedexample-agtbwrveskftttanghtxebtbsfib/Build/Intermediates.noindex/animatedexample.build/Debug-iphonesimulator/animatedexample.build/Script-08A4A3CD28434E44B6B9DE2E.sh (in target 'animatedexample' from project 'animatedexample')
6+
Building project animatedexample with scheme animatedexample and configuration Debug
7+
(2 failures)

apps/animated-example/.expo/xcodebuild.log

Lines changed: 195 additions & 0 deletions
Large diffs are not rendered by default.

apps/animated-example/app.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"expo": {
3+
"name": "animated-example",
4+
"slug": "animated-example",
5+
"version": "1.0.0",
6+
"orientation": "portrait",
7+
"icon": "./assets/icon.png",
8+
"userInterfaceStyle": "light",
9+
"newArchEnabled": true,
10+
"splash": {
11+
"image": "./assets/splash.png",
12+
"resizeMode": "contain",
13+
"backgroundColor": "#1a1a2e"
14+
},
15+
"assetBundlePatterns": [
16+
"**/*"
17+
],
18+
"android": {
19+
"adaptiveIcon": {
20+
"foregroundImage": "./assets/adaptive-icon.png",
21+
"backgroundColor": "#ffffff"
22+
}
23+
},
24+
"ios": {
25+
"supportsTablet": true,
26+
"bundleIdentifier": "com.anonymous.animated-example"
27+
},
28+
"web": {
29+
"bundler": "metro",
30+
"favicon": "./assets/favicon.png"
31+
}
32+
}
33+
}
17.1 KB
Loading
1.43 KB
Loading

0 commit comments

Comments
 (0)