import { Platform, StyleSheet } from 'react-native';
import sharedStyles from '../../views/Styles';
const codeFontFamily = Platform.select({
ios: { fontFamily: 'Courier New' },
android: { fontFamily: 'monospace' }
});
export default StyleSheet.create({
container: {
alignItems: 'flex-start',
flexDirection: 'row'
},
childContainer: {
flex: 1
block: {
flexDirection: 'row',
flexWrap: 'wrap',
emph: {
fontStyle: 'italic'
strong: {
fontWeight: 'bold'
del: {
textDecorationLine: 'line-through'
plainText: {
fontSize: 16,
flexShrink: 1
text: {
...sharedStyles.textRegular
textInfo: {
fontStyle: 'italic',
textBig: {
fontSize: 30,
customEmoji: {
width: 20,
height: 20
customEmojiBig: {
width: 30,
height: 30
temp: { opacity: 0.3 },
mention: {
...sharedStyles.textSemibold
paragraph: {
marginTop: 0,
marginBottom: 0,
justifyContent: 'flex-start'
inlineImage: {
width: 300,
height: 300,
resizeMode: 'contain'
codeInline: {
...sharedStyles.textRegular,
...codeFontFamily,
borderWidth: 1,
borderRadius: 4,
paddingLeft: 2,
paddingTop: 2
codeBlock: {
padding: 4
link: {
heading1: {
...sharedStyles.textBold,
fontSize: 24
heading2: {
fontSize: 22
heading3: {
...sharedStyles.textSemibold,
fontSize: 20
heading4: {
fontSize: 18
heading5: {
...sharedStyles.textMedium,
fontSize: 16
heading6: {
fontSize: 14
quote: {
height: '100%',
width: 2,
marginRight: 5
touchableTable: {
justifyContent: 'center'
containerTable: {
borderBottomWidth: 1,
borderRightWidth: 1
table: {
borderLeftWidth: 1,
borderTopWidth: 1
tableExtraBorders: {
row: {
rowBottomBorder: {
borderBottomWidth: 1
cell: {
justifyContent: 'flex-start',
paddingHorizontal: 13,
paddingVertical: 6
cellRightBorder: {
alignCenter: {
textAlign: 'center'
alignRight: {
textAlign: 'right'
inline: {
}