mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-30 06:12:37 +03:00
fixed wrong icon for ediyor screen
This commit is contained in:
parent
5b4c1d3d8d
commit
086108c495
@ -8,7 +8,7 @@ export default [
|
||||
key: 'B',
|
||||
title: 'B',
|
||||
icon: 'bold',
|
||||
iconType: 'Feather',
|
||||
iconType: 'FontAwesome',
|
||||
wrapper: '**',
|
||||
onPress: applyWrapFormat,
|
||||
// style: { fontWeight: 'bold' },
|
||||
@ -25,7 +25,7 @@ export default [
|
||||
key: 'L',
|
||||
title: 'L',
|
||||
icon: 'list',
|
||||
iconType: 'Feather',
|
||||
iconType: 'FontAwesome',
|
||||
prefix: '-',
|
||||
onPress: applyListFormat,
|
||||
},
|
||||
@ -40,7 +40,7 @@ export default [
|
||||
key: 'I',
|
||||
title: 'I',
|
||||
icon: 'italic',
|
||||
iconType: 'Feather',
|
||||
iconType: 'FontAwesome',
|
||||
wrapper: '*',
|
||||
onPress: applyWrapFormat,
|
||||
},
|
||||
@ -48,7 +48,7 @@ export default [
|
||||
key: 'U',
|
||||
title: 'U',
|
||||
icon: 'underline',
|
||||
iconType: 'Feather',
|
||||
iconType: 'FontAwesome',
|
||||
wrapper: '__',
|
||||
onPress: applyWrapFormat,
|
||||
},
|
||||
@ -67,7 +67,6 @@ export default [
|
||||
icon: 'ios-quote',
|
||||
onPress: applyListFormat,
|
||||
},
|
||||
|
||||
{
|
||||
key: 'CC',
|
||||
title: 'CC',
|
||||
@ -75,14 +74,6 @@ export default [
|
||||
wrapper: '```',
|
||||
onPress: applyWrapFormatNewLines,
|
||||
},
|
||||
|
||||
{
|
||||
key: 'WEB',
|
||||
title: 'WEB',
|
||||
icon: 'link-2',
|
||||
iconType: 'Feather',
|
||||
onPress: applyWebLinkFormat,
|
||||
},
|
||||
// {
|
||||
// key: 'H2',
|
||||
// title: 'H2',
|
||||
|
@ -99,8 +99,8 @@ export default class MarkdownEditorView extends Component {
|
||||
<IconButton
|
||||
size={20}
|
||||
style={styles.rightIcons}
|
||||
iconType="Feather"
|
||||
name="link-2"
|
||||
iconType="FontAwesome"
|
||||
name="link"
|
||||
onPress={() => Formats[9].onPress({ getState, setState })}
|
||||
/>
|
||||
<IconButton style={styles.rightIcons} size={20} iconType="Feather" name="image" />
|
||||
|
@ -13,7 +13,7 @@ import { default as ROUTES } from '../../../constants/routeNames';
|
||||
// Styles
|
||||
import styles from './postButtonStyles';
|
||||
|
||||
const SIZE = 70;
|
||||
const SIZE = 75;
|
||||
const durationIn = 300;
|
||||
const durationOut = 200;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user