Donatas Šimkevičius

Results 16 comments of Donatas Šimkevičius

Wait what, I must be hallucinating, could've sworn it threw an error when I declared the type. I do know that there was a situation where I did add it...

I'd love to use kotlin too, but when you have Icepick a simple class as ``` java abstract class BaseFragment : Fragment() { override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState:...

This has nothing to do with css you can read about it here for what tricks can be used to avoid it: https://css-tricks.com/fighting-the-space-between-inline-block-elements/ Imo, all css solutions except flexbox are...

> Why not send a PR in? Mainly because I don't really know the proper way to add this to blade but that's probably not a big deal; want to...

Make an option to specify the strategy? I've never had a use case where I wanted to get the whole array instead of specific fields from it, so it's always...

@jpicornell I don't think current logic should be changed how `required` is treated, but add additional rule to provide flexibility when and what to grab, maybe you will want to...

The latest addition of `exclude_if/unless` removes everything that matches it so ``` $rules = [ 'has_appointments' => ['required', 'bool'], 'appointments.*' => ['exclude_if:has_appointments,false', 'required'], 'appointments.*.name' => ['required', 'string'], ]; $data =...

Ooooooh, now it makes sense, got it all wrong when it triggers the navigation, for some reason I was certain it does it when mounted.

I'm not really a typescript user, used to be but it just never paid off with all the extra effort and work being put into typings instead of just building...

I think you'd end up supporting them anyway? for example accessing `children.0.name` where `children` value would be null or a number, you'd still safeguard against crashing and return undefined/fallback value...