Transforms labels to lowercase

This commit is contained in:
mashazyu
2018-12-03 19:19:05 +01:00
parent 28a809fb5c
commit 55acd26a39
4 changed files with 6 additions and 6 deletions
@@ -64,7 +64,6 @@ export default class ActionButtonFooter extends Component {
)
:
iconStyles.menuIcon
return (
<TouchableOpacity
onPress={action}
@@ -74,7 +73,7 @@ export default class ActionButtonFooter extends Component {
>
<Icon name={icon} {...iconStyle} />
<Text style={textStyle}>
{title}
{title.toLowerCase()}
</Text>
</TouchableOpacity>
)