Results 10 comments of Dennis Mwea

Use greenbot eventbus. ` implementation 'org.greenrobot:eventbus:3.0.0' ` Then in your view holder bindData() ` SingleItemRootLayout rootLayout = view.findViewById(R.id.contact_row); rootLayout.setOnClickListener(v -> EventBus.getDefault().post(Model)); ` In your activity onCreate() just have ` Eventbus.getDefault().register(this)...

Fix https://github.com/mpociot/laravel-apidoc-generator/pull/789

We can fix this by adding a char type to Doctrine. Check the open PR for the fix https://github.com/webpatser/laravel-countries/pull/120

Figured it out. I'll open a PR

Am not sure whether this package is still under development. I ended up forking the repo and implementing it https://github.com/Dennis-Mwea/custom-nova-table-card. I'll update the read-me on how to add pagination today.

Here is a fix https://github.com/mtolhuys/laravel-schematics/pull/58

https://github.com/mtolhuys/laravel-schematics/pull/58

A fix for the issue https://github.com/charliekassel/vuejs-datepicker/pull/800

That's correct, there's no such driver as fcm. You need to pass the correct driver in your via method in notification class. ``` /** * Get the notification's delivery channels....

Scenario- With this class: ``` part 'authentication_service.g.dart'; @RestApi() abstract class AuthenticationService { factory AuthenticationService(Dio dio, {String baseUrl}) = _AuthenticationService; @POST('/set-phone-number') Future setPhoneNumber(@Body() Map data); } ``` I'd expect the output...