facebook/react-native#18243 (comment)
Updated the correct path on @datvp09, was missing **/debug/**
react-native-cli: 2.0.1
react-native: 0.57.3
Connect your Android device via USB:
| import React, { Component } from 'react'; | |
| import { Grid, Col, Row } from 'react-native-easy-grid'; | |
| import * as renders from './renderedComponents'; | |
| import { Field, reduxForm } from 'redux-form'; | |
| import normalizePhone from './normalizePhone'; | |
| import { createRouter, withNavigation } from '@exponent/ex-navigation'; | |
| import { | |
| Container, | |
| Header, | |
| Title, |
facebook/react-native#18243 (comment)
Updated the correct path on @datvp09, was missing **/debug/**
react-native-cli: 2.0.1
react-native: 0.57.3
Connect your Android device via USB:
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| listHeight: null, | |
| footerY: null | |
| } | |
| } | |
| let scrollDistance = this.state.listHeight - this.state.footerY | |
| this.listView.scrollTo({x: this.state.listHeight, y: this.state.footerY, animated: true}) |
by alexander white ©
| atom-panel.modal.overlay.from-top { | |
| font-size: 18px; | |
| width: 800px; | |
| } | |
| atom-panel.modal .select-list ol.list-group, atom-panel.modal.select-list ol.list-group { | |
| // background: black; | |
| } |
| require "forwardable" | |
| class TheClass | |
| extend Forwardable | |
| attr_reader :items | |
| def_delegators :@items, :<<, :push | |
| def initialize; @items = [] end | |
| end |
| node_modules/* | |
| html/*.html | |
| templates/* | |
| !templates/index_template.hamlc |
| components/ | |
| my_bounded_context/ | |
| app/ | |
| presentation/ # This is called the "UI" layer in DDD literature, but it is also | |
| # where things like JSON interfaces live -- any kind of presentation | |
| # or handshake to anything outside. So "presentation" rather than "ui". | |
| assets/ | |
| helpers/ | |
| mailers/ | |
| views/ |