This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import RX from 'reactxp'; | |
const styles = { | |
container: RX.Styles.createViewStyle({ | |
flex: 1, | |
width: 100, | |
backgroundColor: 'red' | |
}), | |
drawerText: RX.Styles.createTextStyle({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import RX from 'reactxp'; | |
import { observable, action } from 'mobx' | |
import { observer } from 'mobx-react' | |
import DrawerPanel from './DrawerPanel'; | |
const styles = { | |
scroll: RX.Styles.createScrollViewStyle({ | |
alignSelf: 'stretch', |
NewerOlder