Ricardo Fuhrmann
Ricardo Fuhrmann
@EndzeitBegins Did you get this working? How was your solution?
Same problem. I guess this is the culprit: ``` @Override public void onBottomSheetItemClick(MenuItem item) { if (!mClicked) { if (mBehavior != null) { mBehavior.setState(BottomSheetBehavior.STATE_HIDDEN); } if (mClickListener != null) {...
You can use [TYPE_NUMBER_FLAG_DECIMAL](https://developer.android.com/reference/android/text/InputType.html#TYPE_NUMBER_FLAG_DECIMAL) and combine with [TYPE_CLASS_NUMBER](https://developer.android.com/reference/android/text/InputType.html#TYPE_CLASS_NUMBER): ``` input: { hint: 'Please, input a number', type: 2|8192 } ``` 
You could combine TYPE_CLASS_NUMBER (2) and TYPE_NUMBER_VARIATION_PASSWORD (16): ``` input: { hint: 'foobar', prefill: 'dsadsad', type: 2|16, callback: (value) => { this.password= value } } ``` See: 
See this comment https://github.com/aakashns/react-native-dialogs/issues/65#issuecomment-344739677 for another example using a input password.
@codeversed your solution did not worked for me using API 19. Instead of specifying `android:src` or event `app:srcCompat`, I set the drawable image in my activity/fragment: ``` FloatingActionButton myFab =...
Have you checked the README? There is a section explaining: https://github.com/yarolegovich/LovelyDialog#lovelycustomdialog
No problem! Glad to help!
> I do not see any changes to the code in your forked version of the package, what exactly did you changed? Here, it`s in another branch: https://github.com/bbashel1/LaravelFacebookSdk/tree/laravel-7-support
yes, it is.