Skip to content

Commit dcaaf0c

Browse files
Merge pull request #131 from galio-org/Alpha-1
0.6.1
2 parents 5822d2d + ea5ba09 commit dcaaf0c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "galio-framework",
33
"main": "src/index.js",
4-
"version": "0.6.0",
4+
"version": "0.6.1",
55
"files": [
66
"src/"
77
],

src/Checkbox.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function Checkbox({
2222
labelStyle,
2323
onChange,
2424
style,
25-
styles,
25+
styles,
26+
theme,
2627
}) {
2728
const [checked, setChecked] = React.useState(initialValue);
2829
React.useEffect(() => {

src/NavBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function NavBar({
4444

4545
function renderLeft() {
4646
if (!hideLeft) {
47-
if (name || back) {
47+
if (leftIconName || back) {
4848
return (
4949
<View style={[styles.left, leftStyle]}>
5050
<TouchableOpacity onPress={() => onLeftPress && onLeftPress()} hitSlop={leftHitSlop}>

0 commit comments

Comments
 (0)