Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit f0ae62d

Browse files
authored
Merge branch 'master' into add-info
2 parents 5de4287 + f6bc794 commit f0ae62d

File tree

4 files changed

+5
-23
lines changed

4 files changed

+5
-23
lines changed

app/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const styles = {
7272
width: 0,
7373
height: 3,
7474
},
75-
shadowColor: '#CF5425',
75+
shadowColor: '#282C34',
7676
shadowOpacity: 0.4,
7777
shadowRadius: 6,
7878
},

app/views/DropboxNoteList.js

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -70,29 +70,14 @@ const styles = {
7070
fontSize: 21,
7171
marginRight: 20
7272
},
73-
noteListIconWrap: {
74-
backgroundColor: '#eeeeee',
75-
display: 'flex',
76-
alignItems: 'center',
77-
justifyContent: 'center',
78-
width: 30,
79-
height: 30,
80-
borderRadius: 50,
81-
overflow: 'hidden',
82-
marginTop: 9
83-
},
84-
noteListIcon: {
85-
fontSize: 14,
86-
color: '#adadad'
87-
},
8873
noteListText: {
8974
position: 'absolute',
9075
color: '#3a3941',
9176
backgroundColor: 'transparent',
9277
top: 15,
9378
fontSize: 14,
9479
width: '73%',
95-
marginLeft: 40
80+
marginLeft: 10
9681
},
9782
noteListTextNone: {
9883
position: 'absolute',
@@ -531,9 +516,6 @@ export default class DropboxNoteList extends Component {
531516
key={note.fileName}
532517
button onPress={() => this.setNoteModalOpen(note.path)}>
533518
<Body>
534-
<View style={styles.noteListIconWrap}>
535-
<Icon name='md-code-working' style={styles.noteListIcon}/>
536-
</View>
537519
<Text numberOfLines={1}
538520
style={styles.noteListText}>{note.content}</Text>
539521
<Text style={styles.noteListDate}>{moment(note.updatedAt).format('MMM D')}</Text>

app/views/note/DropboxNoteModal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ export default class DropboxNoteModal extends React.Component {
310310
style={styles.switchEditButton}
311311
onPress={this.handleSwitchEditButtonClick.bind(this)}>
312312
<Text style={styles.switchEditText}>
313-
{this.state.isEditting ? 'Done' : 'Edit'}
313+
{this.state.isEditting ? 'Save' : 'Edit'}
314314
</Text>
315315
</Button>
316316
<Button transparent onPress={() => ActionSheet.show(
@@ -330,7 +330,7 @@ export default class DropboxNoteModal extends React.Component {
330330
}
331331
}
332332
)}>
333-
<Text><Icon name='md-more' style={styles.noteDetailButton}/></Text>
333+
<Text><Icon name='ios-more' style={styles.noteDetailButton}/></Text>
334334
</Button>
335335
</Root>
336336
</View>

app/views/note/NoteModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export default class NoteModal extends React.Component {
230230
style={styles.switchEditButton}
231231
onPress={this.handleSwitchEditButtonClick.bind(this)}>
232232
<Text style={styles.switchEditText}>
233-
{this.state.isEditting ? 'Done' : 'Edit'}
233+
{this.state.isEditting ? 'Save' : 'Edit'}
234234
</Text>
235235
</Button>
236236
<Button transparent onPress={() => ActionSheet.show(

0 commit comments

Comments
 (0)