Skip to content

Commit

Permalink
Merge pull request #131 from galio-org/Alpha-1
Browse files Browse the repository at this point in the history
0.6.1
  • Loading branch information
palingheorghe authored Sep 16, 2019
2 parents 5822d2d + ea5ba09 commit dcaaf0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "galio-framework",
"main": "src/index.js",
"version": "0.6.0",
"version": "0.6.1",
"files": [
"src/"
],
Expand Down
3 changes: 2 additions & 1 deletion src/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ function Checkbox({
labelStyle,
onChange,
style,
styles,
styles,
theme,
}) {
const [checked, setChecked] = React.useState(initialValue);
React.useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function NavBar({

function renderLeft() {
if (!hideLeft) {
if (name || back) {
if (leftIconName || back) {
return (
<View style={[styles.left, leftStyle]}>
<TouchableOpacity onPress={() => onLeftPress && onLeftPress()} hitSlop={leftHitSlop}>
Expand Down

0 comments on commit dcaaf0c

Please sign in to comment.