Skip to content

Files

Latest commit

a1f02c7 · Oct 10, 2017

History

History
27 lines (24 loc) · 1.36 KB

README.md

File metadata and controls

27 lines (24 loc) · 1.36 KB

ReactNativeApps

react native testing apps for learning purposes


This projects is for learning purposes about React Native opend by Guy Zwerdling

commands:
git clone https://github.com/RumorsHackerSchool/ReactNativeApps.git
cd ReactNativeApps/<app>
react-native start

on other terminal in the same location:
react-native run-android

Guy Zwerdling - testing projects:

Albums - this app show some albums of Tylor Swift, in this app I am using JSON (using https) to collect the data about the albums and display them to the users. There is also a button to buy the album which is a link to amazon store.
alt text

Auth - this app is login section for users using firebase. I setup meny component for flexible using, I also const with style properties, if we setup the style for every TAG we need to write style={styles.styleName}, in my case my component was full in style const so I setup as follow:
const { inputStyle, labelStyle, containerStyle } = styles;
and on every TAG I specified only the style name
style={containerStyle}
alt text