├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE.txt ├── README.md ├── app ├── components │ ├── DrawerMenu.js │ ├── blur │ │ ├── AppWrapper.js │ │ ├── ChatFooter.js │ │ ├── ChatItem.js │ │ ├── ChatListHeader.js │ │ ├── Message.js │ │ ├── NewsHead.js │ │ ├── Profile.js │ │ ├── ProfileTab.js │ │ └── Toolbar.js │ ├── classic │ │ ├── AppWrapper.js │ │ ├── ChatFooter.js │ │ ├── ChatItem.js │ │ ├── ChatListHeader.js │ │ ├── Message.js │ │ ├── NewsHead.js │ │ ├── Profile.js │ │ └── ProfileTab.js │ ├── common │ │ ├── FollowerItem.js │ │ ├── FriendList.js │ │ ├── ImageGallery.js │ │ ├── Message.js │ │ ├── Post.js │ │ ├── PostImage.js │ │ ├── PostList.js │ │ ├── ProfileTab.js │ │ └── Toolbar.js │ └── material │ │ ├── ChatFooter.js │ │ ├── ChatItem.js │ │ ├── ChatListHeader.js │ │ ├── Message.js │ │ ├── NewsHead.js │ │ ├── Post.js │ │ ├── Profile.js │ │ ├── ProfileTab.js │ │ └── Toolbar.js ├── screens │ ├── ChatListScreenBase.js │ ├── ChatScreenBase.js │ ├── LoginScreenBase.js │ ├── MainScreenBase.js │ ├── MainScreenMaterial.js │ ├── NewsScreenBase.js │ ├── ProfileScreenBase.js │ ├── SettingsScreenBase.js │ └── login │ │ ├── LoginScreenBlur.js │ │ ├── LoginScreenClassic.js │ │ └── LoginScreenMaterial.js └── util │ ├── ApiMock.js │ ├── Setup.js │ └── ThemeService.js ├── img ├── avatars │ ├── bernadette.jpg │ ├── boy.jpg │ ├── boy2.jpeg │ ├── boy3.jpeg │ ├── boy4.jpeg │ ├── cecilia.jpg │ ├── eula.jpeg │ ├── evelyn.jpg │ ├── girl.jpeg │ ├── jenny.jpeg │ ├── nick.jpg │ ├── rosalinda.jpeg │ └── stanton.png ├── blurBg.png ├── lights2.jpeg ├── materialBg.jpg ├── posts │ ├── beauty.jpg │ ├── bike.jpg │ ├── birds.jpeg │ ├── d.jpg │ ├── doors.jpg │ ├── dxd.jpeg │ ├── friends.jpg │ ├── good.jpeg │ ├── life.jpg │ ├── night.jpeg │ ├── onemore.jpeg │ ├── people.jpeg │ ├── petrak.jpeg │ ├── power.jpeg │ ├── river.jpg │ ├── sea.jpeg │ ├── society.jpeg │ ├── stars.jpg │ ├── sun.jpeg │ ├── tree.jpeg │ ├── wood.jpg │ └── wree.jpg └── react_logo.png ├── index.ios.js ├── ios ├── BoomApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── BoomApp.xcscheme ├── BoomApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── BoomAppTests │ ├── BoomAppTests.m │ └── Info.plist ├── Ionicons.ttf ├── Montserrat-ExtraLight.otf ├── Montserrat-Regular.ttf └── roboto.woff2 └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/README.md -------------------------------------------------------------------------------- /app/components/DrawerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/DrawerMenu.js -------------------------------------------------------------------------------- /app/components/blur/AppWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/AppWrapper.js -------------------------------------------------------------------------------- /app/components/blur/ChatFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/ChatFooter.js -------------------------------------------------------------------------------- /app/components/blur/ChatItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/ChatItem.js -------------------------------------------------------------------------------- /app/components/blur/ChatListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/ChatListHeader.js -------------------------------------------------------------------------------- /app/components/blur/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/Message.js -------------------------------------------------------------------------------- /app/components/blur/NewsHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/NewsHead.js -------------------------------------------------------------------------------- /app/components/blur/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/Profile.js -------------------------------------------------------------------------------- /app/components/blur/ProfileTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/ProfileTab.js -------------------------------------------------------------------------------- /app/components/blur/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/blur/Toolbar.js -------------------------------------------------------------------------------- /app/components/classic/AppWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/AppWrapper.js -------------------------------------------------------------------------------- /app/components/classic/ChatFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/ChatFooter.js -------------------------------------------------------------------------------- /app/components/classic/ChatItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/ChatItem.js -------------------------------------------------------------------------------- /app/components/classic/ChatListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/ChatListHeader.js -------------------------------------------------------------------------------- /app/components/classic/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/Message.js -------------------------------------------------------------------------------- /app/components/classic/NewsHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/NewsHead.js -------------------------------------------------------------------------------- /app/components/classic/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/Profile.js -------------------------------------------------------------------------------- /app/components/classic/ProfileTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/classic/ProfileTab.js -------------------------------------------------------------------------------- /app/components/common/FollowerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/FollowerItem.js -------------------------------------------------------------------------------- /app/components/common/FriendList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/FriendList.js -------------------------------------------------------------------------------- /app/components/common/ImageGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/ImageGallery.js -------------------------------------------------------------------------------- /app/components/common/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/Message.js -------------------------------------------------------------------------------- /app/components/common/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/Post.js -------------------------------------------------------------------------------- /app/components/common/PostImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/PostImage.js -------------------------------------------------------------------------------- /app/components/common/PostList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/PostList.js -------------------------------------------------------------------------------- /app/components/common/ProfileTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/ProfileTab.js -------------------------------------------------------------------------------- /app/components/common/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/common/Toolbar.js -------------------------------------------------------------------------------- /app/components/material/ChatFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/ChatFooter.js -------------------------------------------------------------------------------- /app/components/material/ChatItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/ChatItem.js -------------------------------------------------------------------------------- /app/components/material/ChatListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/ChatListHeader.js -------------------------------------------------------------------------------- /app/components/material/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/Message.js -------------------------------------------------------------------------------- /app/components/material/NewsHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/NewsHead.js -------------------------------------------------------------------------------- /app/components/material/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/Post.js -------------------------------------------------------------------------------- /app/components/material/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/Profile.js -------------------------------------------------------------------------------- /app/components/material/ProfileTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/ProfileTab.js -------------------------------------------------------------------------------- /app/components/material/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/components/material/Toolbar.js -------------------------------------------------------------------------------- /app/screens/ChatListScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/ChatListScreenBase.js -------------------------------------------------------------------------------- /app/screens/ChatScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/ChatScreenBase.js -------------------------------------------------------------------------------- /app/screens/LoginScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/LoginScreenBase.js -------------------------------------------------------------------------------- /app/screens/MainScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/MainScreenBase.js -------------------------------------------------------------------------------- /app/screens/MainScreenMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/MainScreenMaterial.js -------------------------------------------------------------------------------- /app/screens/NewsScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/NewsScreenBase.js -------------------------------------------------------------------------------- /app/screens/ProfileScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/ProfileScreenBase.js -------------------------------------------------------------------------------- /app/screens/SettingsScreenBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/SettingsScreenBase.js -------------------------------------------------------------------------------- /app/screens/login/LoginScreenBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/login/LoginScreenBlur.js -------------------------------------------------------------------------------- /app/screens/login/LoginScreenClassic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/login/LoginScreenClassic.js -------------------------------------------------------------------------------- /app/screens/login/LoginScreenMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/screens/login/LoginScreenMaterial.js -------------------------------------------------------------------------------- /app/util/ApiMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/util/ApiMock.js -------------------------------------------------------------------------------- /app/util/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/util/Setup.js -------------------------------------------------------------------------------- /app/util/ThemeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/app/util/ThemeService.js -------------------------------------------------------------------------------- /img/avatars/bernadette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/bernadette.jpg -------------------------------------------------------------------------------- /img/avatars/boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/boy.jpg -------------------------------------------------------------------------------- /img/avatars/boy2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/boy2.jpeg -------------------------------------------------------------------------------- /img/avatars/boy3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/boy3.jpeg -------------------------------------------------------------------------------- /img/avatars/boy4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/boy4.jpeg -------------------------------------------------------------------------------- /img/avatars/cecilia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/cecilia.jpg -------------------------------------------------------------------------------- /img/avatars/eula.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/eula.jpeg -------------------------------------------------------------------------------- /img/avatars/evelyn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/evelyn.jpg -------------------------------------------------------------------------------- /img/avatars/girl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/girl.jpeg -------------------------------------------------------------------------------- /img/avatars/jenny.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/jenny.jpeg -------------------------------------------------------------------------------- /img/avatars/nick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/nick.jpg -------------------------------------------------------------------------------- /img/avatars/rosalinda.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/rosalinda.jpeg -------------------------------------------------------------------------------- /img/avatars/stanton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/avatars/stanton.png -------------------------------------------------------------------------------- /img/blurBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/blurBg.png -------------------------------------------------------------------------------- /img/lights2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/lights2.jpeg -------------------------------------------------------------------------------- /img/materialBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/materialBg.jpg -------------------------------------------------------------------------------- /img/posts/beauty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/beauty.jpg -------------------------------------------------------------------------------- /img/posts/bike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/bike.jpg -------------------------------------------------------------------------------- /img/posts/birds.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/birds.jpeg -------------------------------------------------------------------------------- /img/posts/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/d.jpg -------------------------------------------------------------------------------- /img/posts/doors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/doors.jpg -------------------------------------------------------------------------------- /img/posts/dxd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/dxd.jpeg -------------------------------------------------------------------------------- /img/posts/friends.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/friends.jpg -------------------------------------------------------------------------------- /img/posts/good.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/good.jpeg -------------------------------------------------------------------------------- /img/posts/life.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/life.jpg -------------------------------------------------------------------------------- /img/posts/night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/night.jpeg -------------------------------------------------------------------------------- /img/posts/onemore.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/onemore.jpeg -------------------------------------------------------------------------------- /img/posts/people.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/people.jpeg -------------------------------------------------------------------------------- /img/posts/petrak.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/petrak.jpeg -------------------------------------------------------------------------------- /img/posts/power.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/power.jpeg -------------------------------------------------------------------------------- /img/posts/river.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/river.jpg -------------------------------------------------------------------------------- /img/posts/sea.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/sea.jpeg -------------------------------------------------------------------------------- /img/posts/society.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/society.jpeg -------------------------------------------------------------------------------- /img/posts/stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/stars.jpg -------------------------------------------------------------------------------- /img/posts/sun.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/sun.jpeg -------------------------------------------------------------------------------- /img/posts/tree.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/tree.jpeg -------------------------------------------------------------------------------- /img/posts/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/wood.jpg -------------------------------------------------------------------------------- /img/posts/wree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/posts/wree.jpg -------------------------------------------------------------------------------- /img/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/img/react_logo.png -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/BoomApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/BoomApp.xcodeproj/xcshareddata/xcschemes/BoomApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp.xcodeproj/xcshareddata/xcschemes/BoomApp.xcscheme -------------------------------------------------------------------------------- /ios/BoomApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/BoomApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/BoomApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/BoomApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/BoomApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp/Info.plist -------------------------------------------------------------------------------- /ios/BoomApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomApp/main.m -------------------------------------------------------------------------------- /ios/BoomAppTests/BoomAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomAppTests/BoomAppTests.m -------------------------------------------------------------------------------- /ios/BoomAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/BoomAppTests/Info.plist -------------------------------------------------------------------------------- /ios/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/Ionicons.ttf -------------------------------------------------------------------------------- /ios/Montserrat-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/Montserrat-ExtraLight.otf -------------------------------------------------------------------------------- /ios/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /ios/roboto.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/ios/roboto.woff2 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akveo/react-native-ui-kitten-demo-app/HEAD/package.json --------------------------------------------------------------------------------