Saad Batwa
Saad Batwa
> The reason you're not getting suggestions is here: > > https://github.com/kivy/python-for-android/blob/2610330cfca7f43d2fa69e175f4b9c3d09338680/pythonforandroid/bootstraps/sdl2/build/src/main/java/org/libsdl/app/SDLActivity.java#L2005 > > [TYPE_TEXT_VARIATION_VISIBLE_PASSWORD](https://developer.android.com/reference/android/text/InputType.html#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) shows a keyboard for password fields. That's why you don't see suggestions, even if `keyboard_suggestions`...
If anyone's interested in doing one for Arabic (like the [Japanese](https://github.com/sveltejs/learn.svelte.dev/issues/158#issuecomment-1488335132) one) contact me!
Yeah I was being lazy, my bad. I'm trying to do a Many users to Many tenants. Where one user could have access to many tenants instead of being tied...
I'm referring to a many-to-many relationship with the tenant model in a single database. Any model (User, Post, Invoice, etc.) can be attached to one or more tenants via a...
Could you share a bit more details? I'd like to contribute if that's alright!
I think what's happening is that you're trying to have **two fields with the same name at once**: ```php TextInput::make('value') ->label('filament-panels::resources/product-resource.form.discounts.value.label') ->translateLabel() ->suffix('%') ->inputMode('decimal') ->rule('numeric') ->type('number') ->step(0.01) ->minValue(0) ->required(fn($get) =>...
It'd be great to have something like `exclude()` / `include()` that works like `hidden()` / `visible()` but actually doesn't render the input at the first place. I usually do the...
My first thought was that `visibility` works only with services that actually support private files such as `S3`: https://filamentphp.com/docs/3.x/panels/installation#using-a-production-ready-storage-disk But I found this article on how to enable temporary URLs...
So I investigated a bit and found out that if I open the page at the first tab, and click save, the error shows just as the video. However if...
In `packages/forms/resources/views/components/textarea.blade.php`, replacing `visible` with `eager`: from ```blade