Skip to content

Commit

Permalink
change the name from Croma to HueHive in few places
Browse files Browse the repository at this point in the history
  • Loading branch information
kamalkishor1991 committed Jul 22, 2023
1 parent 898af09 commit 13bea7c
Show file tree
Hide file tree
Showing 4 changed files with 219 additions and 169 deletions.
2 changes: 1 addition & 1 deletion ApplicationRoot.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function App() {
name="Home"
options={() => {
return {
title: t('Croma'),
title: t('Huehive'),
headerLeft: () => hamburgerMenuIcon(),
headerTitleContainerStyle: { left: 40 }
};
Expand Down
2 changes: 1 addition & 1 deletion android/fastlane/metadata/android/en-US/title.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
HueHive(Formerly Croma)
HueHive
5 changes: 4 additions & 1 deletion components/HamburgerMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const HamburgerMenu = (props) => {
require('../assets/images/icon.png')
}
/>
<Text>{userData ? userData.fullName : t('Croma - Save you colors')}</Text>
<Text style={styles.headerText}>{userData ? userData.fullName : t('HueHive')}</Text>
</View>
</TouchableOpacity>
<ScrollView>
Expand Down Expand Up @@ -289,6 +289,9 @@ const styles = StyleSheet.create({
fontSize: menuHeight - 2 * padding,
padding: padding,
color: 'black'
},
headerText: {
paddingLeft: 5
}
});

Expand Down
Loading

0 comments on commit 13bea7c

Please sign in to comment.