Skip to content

Commit

Permalink
update_btn
Browse files Browse the repository at this point in the history
  • Loading branch information
milon27 committed Jul 24, 2021
1 parent 0f16a3e commit 2c2cbd5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/screens/dashboard/CreatePassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default function CreatePassword({ route: { params }, navigation }) {

<DropDownPicker
style={styles.dropDown}
placeholder="Select Category (Max-3)"
placeholder="Select A Category"
placeholderStyle={{
color: Theme.COLOR_GRAY
}}
Expand Down
22 changes: 12 additions & 10 deletions src/components/screens/dashboard/HomeScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,17 +156,19 @@ export default function HomeScreen() {
/>
</Container>

<Animated.View style={{
transform: [
{ translateX: translateY }
]
}}>
<TouchableOpacity ref={addIcon} onPress={async () => {
nav.navigate(URL.CREATE_PASSWORD)
}} style={styles.buttonCallout} >

<TouchableOpacity ref={addIcon} onPress={async () => {
nav.navigate(URL.CREATE_PASSWORD)
}} style={styles.buttonCallout} >
<Animated.View style={{
transform: [
{ translateX: translateY }
]
}}>
<Icon size={65} style={styles.icon} name="add-circle" type={DefineIcon.Ionicon} />
</TouchableOpacity>
</Animated.View>
</Animated.View>
</TouchableOpacity>




Expand Down

0 comments on commit 2c2cbd5

Please sign in to comment.