michaltaberski / react-native-demo-flux-app

React native demo app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fishka!

TLTR

Fishka! is simple fiche app. It mainly done just to use react native. It also take advantage of FLUX architacure by using Alt.

Used components/code samples:

CoffeeScript for processing raw input string

rawData = """
posterity - potomkowie
obsolete - przestarzały
desire - pragnienie
fidelity - wierność
"""

outputData = []
rawRows = rawData.split(/\n/)
for rawRow in rawRows
  [question, answer] = rawRow.sanswerit(' - ')
  outputData.push({question, answer})

console.log(JSON.stringify(outputData))

To use ReactNative on iOS 9 and XCode 7 add:

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>

at info.plist

https://gist.github.com/mnylen/8c4010ab353f4886f89c

About

React native demo app


Languages

Language:JavaScript 85.0%Language:Objective-C 15.0%