Skip to content

Commit 04dff10

Browse files
feat: UNT-T22247: Example app version update
1 parent 838703f commit 04dff10

File tree

88 files changed

+8329
-21538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+8329
-21538
lines changed

Example/.babelrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

Example/.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

Example/.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

Example/.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
root: true,
3+
extends: '@react-native',
4+
requireConfigFile: false
5+
};

Example/.flowconfig

Lines changed: 0 additions & 54 deletions
This file was deleted.

Example/.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

Example/.gitignore

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23-
project.xcworkspace
23+
ios/.xcode.env.local
2424

2525
# Android/IntelliJ
2626
#
@@ -29,43 +29,38 @@ build/
2929
.gradle
3030
local.properties
3131
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
3236

3337
# node.js
3438
#
3539
node_modules/
3640
npm-debug.log
3741
yarn-error.log
3842

39-
# BUCK
40-
buck-out/
41-
\.buckd/
42-
4343
# fastlane
4444
#
4545
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
4646
# screenshots whenever they are needed.
4747
# For more information about the recommended setup visit:
4848
# https://docs.fastlane.tools/best-practices/source-control/
4949

50-
*/fastlane/report.xml
51-
*/fastlane/Preview.html
52-
*/fastlane/screenshots
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
5354

5455
# Bundle artifact
5556
*.jsbundle
5657

57-
# CocoaPods
58+
# Ruby / CocoaPods
5859
/ios/Pods/
59-
android/.project
60-
android/.settings/org.eclipse.buildship.core.prefs
61-
android/app/.classpath
62-
android/app/.project
63-
android/app/.settings/org.eclipse.buildship.core.prefs
64-
android/java_pid28385.hprof
65-
android/java_pid35054.hprof
66-
android/java_pid40495.hprof
67-
android/java_pid44292.hprof
68-
android/java_pid50139.hprof
69-
android/app/release/app-release.apk
70-
android/app/release/output.json
71-
ios/link-assets-manifest.json
60+
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
# testing
66+
/coverage

Example/.prettierrc.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module.exports = {
2-
bracketSpacing: false,
3-
jsxBracketSameLine: true,
4-
singleQuote: true,
5-
trailingComma: 'all',
6-
};
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
4+
bracketSpacing: false,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
};

Example/.watchmanconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { ScrollView, View } from 'react-native';
2+
import {ScrollView} from 'react-native';
33
import styles from './styles/AppStyles';
44
import DefaultOrBallSpinnerButton from './DefaultOrBallSpinnerButton';
55
import BarSpinnerButton from './BarSpinnerButton';
@@ -11,20 +11,20 @@ import SkypeSpinnerButton from './SkypeSpinnerButton';
1111
import UIActivitySpinnerButton from './UIActivitySpinnerButton';
1212
import WaveSpinnerButton from './WaveSpinnerButton';
1313

14-
const App = () => {
14+
const App: React.FC = () => {
1515
return (
1616
<ScrollView style={styles.safeArea}>
1717
<DefaultOrBallSpinnerButton />
18-
<DotSpinnerButton />
19-
<PacmanSpinnerButton />
20-
<SkypeSpinnerButton />
2118
<BarSpinnerButton />
19+
<DotSpinnerButton />
2220
<MaterialSpinnerButton />
21+
<PacmanSpinnerButton />
2322
<PulseSpinnerButton />
23+
<SkypeSpinnerButton />
2424
<UIActivitySpinnerButton />
2525
<WaveSpinnerButton />
2626
</ScrollView>
27-
)
27+
);
2828
};
2929

3030
export default App;

0 commit comments

Comments
 (0)