Milt
Milt
Yep, it's still broken on android 😃
+1 not working here ``` npx github:typicode/husky-4-to-8 --remove-v4-config Need to install the following packages: [email protected] Ok to proceed? (y) y npm ERR! Cannot convert undefined or null to object ```
My 2 cents: https://github.com/teslamotors/react-native-camera-kit somehow does it
Try ```this.toastRef.show('Hello!');``` and set the ref with: ``` { this.toastRef = ref; }} ... /> ```
Can confirm that using version `1.1.0` in `android/app/build.gradle` solves the issue.
Created PR #1425 which should fix the issue, although I guess it could be updated to 1.2.0 too.
@jselesan any chance you can post the workaround? I am having the same problem with angular-material tabs (md-tabs) as @oharlem noted...
So what I did for now (but seems like a hack) is the following: ``` onInitialize: function(selectize){ _.each(vm.currentUser.movies, function(movie) { selectize.addOption(movie); selectize.addItem(movie._id); }); } ``` which seems to work. So...
Well that would mean that someone should change the models/object to suit the selectize dropdown which is imo unacceptable..
Yep the issue is still present and it will always be until two-way object binding is in place. ATM you still have to pluck or set strings for values into...