Skip to content

Commit 9cb59b4

Browse files
committed
chore: use react native test app
1 parent 42763fe commit 9cb59b4

File tree

112 files changed

+9841
-49143
lines changed

Some content is hidden

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

112 files changed

+9841
-49143
lines changed

example/.buckconfig

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

example/.flowconfig

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

example/.gitattributes

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

example/.gitignore

Lines changed: 10 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,14 @@
1-
# OSX
2-
#
1+
*.binlog
2+
*.hprof
3+
*.xcworkspace/
4+
*.zip
35
.DS_Store
4-
5-
# Xcode
6-
#
6+
.gradle/
7+
.idea/
8+
.vs/
9+
Pods/
710
build/
8-
*.pbxuser
9-
!default.pbxuser
10-
*.mode1v3
11-
!default.mode1v3
12-
*.mode2v3
13-
!default.mode2v3
14-
*.perspectivev3
15-
!default.perspectivev3
16-
xcuserdata
17-
*.xccheckout
18-
*.moved-aside
19-
DerivedData
20-
*.hmap
21-
*.ipa
22-
*.xcuserstate
23-
24-
# Android/IntelliJ
25-
#
26-
build/
27-
.idea
28-
.gradle
11+
dist/
2912
local.properties
30-
*.iml
31-
32-
# node.js
33-
#
13+
msbuild.binlog
3414
node_modules/
35-
npm-debug.log
36-
yarn-error.log
37-
38-
# BUCK
39-
buck-out/
40-
\.buckd/
41-
*.keystore
42-
!debug.keystore
43-
44-
# fastlane
45-
#
46-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47-
# screenshots whenever they are needed.
48-
# For more information about the recommended setup visit:
49-
# https://docs.fastlane.tools/best-practices/source-control/
50-
51-
*/fastlane/report.xml
52-
*/fastlane/Preview.html
53-
*/fastlane/screenshots
54-
55-
# Bundle artifact
56-
*.jsbundle
57-
58-
# CocoaPods
59-
/ios/Pods/

example/App.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import * as React from 'react';
22
import {StyleSheet, Text, SafeAreaView, Platform} from 'react-native';
3-
import {ProgressView} from '../js';
3+
import {ProgressView} from '@react-native-community/progress-view';
44

55
type Props = {||};
66
type State = {|
77
progress: number,
88
|};
99

10-
export class App extends React.Component<Props, State> {
10+
class App extends React.Component<Props, State> {
1111
_rafId: ?AnimationFrameID = null;
1212

1313
state = {
@@ -118,6 +118,8 @@ export class App extends React.Component<Props, State> {
118118
}
119119
}
120120

121+
export default App;
122+
121123
const styles = StyleSheet.create({
122124
container: {
123125
flex: 1,

example/_editorconfig

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

example/android/app/_BUCK

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

0 commit comments

Comments
 (0)