Ricardo Fuhrmann

Results 26 comments of 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 } ``` ![image](https://user-images.githubusercontent.com/1160365/33047164-25dd731c-ce33-11e7-9621-ba2a56400e35.png)

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: ![image](https://user-images.githubusercontent.com/1160365/32862086-a1eac65a-ca35-11e7-82ef-45f2c5915647.png)

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