├── .gitignore ├── LICENSE ├── README.md ├── doc ├── pause_demo.gif ├── proto_demo.gif ├── restart_demo.gif └── simple_demo.gif ├── example ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── newstickerexample │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── index.android.js ├── index.ios.js ├── index.js ├── ios │ ├── NewstickerExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NewstickerExample.xcscheme │ ├── NewstickerExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── NewstickerExampleTests │ │ ├── Info.plist │ │ └── NewstickerExampleTests.m ├── lib │ ├── Newsticker.js │ └── Style.js └── package.json ├── index.js ├── lib ├── Newsticker.js └── Style.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/README.md -------------------------------------------------------------------------------- /doc/pause_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/doc/pause_demo.gif -------------------------------------------------------------------------------- /doc/proto_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/doc/proto_demo.gif -------------------------------------------------------------------------------- /doc/restart_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/doc/restart_demo.gif -------------------------------------------------------------------------------- /doc/simple_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/doc/simple_demo.gif -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/newstickerexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/java/com/newstickerexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NewstickerExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/index.android.js -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/index.ios.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/NewstickerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/NewstickerExample.xcodeproj/xcshareddata/xcschemes/NewstickerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample.xcodeproj/xcshareddata/xcschemes/NewstickerExample.xcscheme -------------------------------------------------------------------------------- /example/ios/NewstickerExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/NewstickerExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/NewstickerExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/NewstickerExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/NewstickerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample/Info.plist -------------------------------------------------------------------------------- /example/ios/NewstickerExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExample/main.m -------------------------------------------------------------------------------- /example/ios/NewstickerExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/NewstickerExampleTests/NewstickerExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/ios/NewstickerExampleTests/NewstickerExampleTests.m -------------------------------------------------------------------------------- /example/lib/Newsticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/lib/Newsticker.js -------------------------------------------------------------------------------- /example/lib/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/lib/Style.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/index.js -------------------------------------------------------------------------------- /lib/Newsticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/lib/Newsticker.js -------------------------------------------------------------------------------- /lib/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/lib/Style.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moschan/react-native-newsticker/HEAD/package.json --------------------------------------------------------------------------------