File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " galio-framework" ,
3
3
"main" : " src/index.js" ,
4
- "version" : " 0.6.0 " ,
4
+ "version" : " 0.6.1 " ,
5
5
"files" : [
6
6
" src/"
7
7
],
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ function Checkbox({
22
22
labelStyle,
23
23
onChange,
24
24
style,
25
- styles,
25
+ styles,
26
+ theme,
26
27
} ) {
27
28
const [ checked , setChecked ] = React . useState ( initialValue ) ;
28
29
React . useEffect ( ( ) => {
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ function NavBar({
44
44
45
45
function renderLeft ( ) {
46
46
if ( ! hideLeft ) {
47
- if ( name || back ) {
47
+ if ( leftIconName || back ) {
48
48
return (
49
49
< View style = { [ styles . left , leftStyle ] } >
50
50
< TouchableOpacity onPress = { ( ) => onLeftPress && onLeftPress ( ) } hitSlop = { leftHitSlop } >
You can’t perform that action at this time.
0 commit comments