Tornike Kurdadze
Tornike Kurdadze
Hey @ruslanouv2, 1. from version ^3.0.1 you can use `[contextMenuBuilder](https://api.flutter.dev/flutter/material/TextField/contextMenuBuilder.html)` to customize the toolbar options. 2. You can set `toolbarEnabled` to `false` and pass `onLongPress` callback and then show your...
Hey @icc-tips, can you post the snippet of the code so that I can reproduce it on my machine?
That would work but everytime I add new translation I have to use external package or online tool to convert the Json to data class, wouldn't it be nicer if...
Hi @jblankenship5, can you check if the autofocus works if you replace Pinput with: ``` return TextField( autofocus: true, ); ```
Each pin is basically a DecoratedBox so you can build anything that could be built with Container. But I don't think you can have both inner and outer border at...
Hey @AliEasy, thanks for the PR. I'm thinking of separating Pinput and SMS autofill, so I'll get back to this PR later
I separated Pinput and SmartAuth so if anyone needs this feature, you can implement it on your side
Good idea but how would you remove smart_auth from Pinput without messing up developer's day :D?
@AlexV525 I'm thinking of something like this: I'll create a interface `SmsRetriever` and add it as a `Pinput` property ```dart abstract class SmsRetriever { bool get listenForMultipleSms; Future getSmsCode(); Future...
Hi, what exactly isn't working?