Xamarin.Forms.InputKit
Xamarin.Forms.InputKit copied to clipboard
New Controls on V3
I need some feedback to generate new control on V3.
Which type of data you need to get from users? or Which controls can be added into this package on newer versions?
Hi @enisn
We could add a quantity picker like the image below I made its all done in Forms project there is no implementation in the client projects. Currently the full label is exposed which gives access to the PropertyChanged something like this for users to get the value:
QtyPicker.QtyLabel.PropertyChanged += (o, e) =>
{
if (o is Label label)
{
if (int.TryParse(label.Text, out int result))
val = result; // Get qty picker value
}
};
Exposed properties are Max (could add a minimum property as well). We could customize the picker further later? Just an idea
I also have a component EnhancedEntry: https://github.com/LeoJHarris/EnhancedEntry I would be keen to move any functionality you might lie out of it into you AdvancedEntry, there's also some additional behaviors in there as well. No worries if you dont want to take anything from it.
@LeoJHarris voov. There is awesome details on EnchantedEntry. We can improve annotation like that.
Also QuantityPicker is good idea. But i think Xamarin Forms already has it as "Stepper" isn't it ?
@enisn Okay your right I'd forgot Xamarin had a stepper
@enisn Okay your right I'd forgot Xamarin had a stepper
I looked again stepper but there is no label to see what is current value in stepper. It can be an advanced stepper.
Hey, quick question. Not sure where to post this to ask you @enisn But can the Radio Button Text wrap to a newline like a label? Or will it always get truncated?
Hi @enisn
You can also add customize tab which i can put counter on it like this

another suggestion what about range slider ? like one in price range from to
@amrkamal1993 You can find a customize tab that already does that feature with counter https://github.com/xabre/xamarin-forms-tab-badge
@enisn If your still open to suggestions, AutoCompleteView?
@enisn If your still open to suggestions, AutoCompleteView?
AutoComplete feature planned for AdvancedEntry, you can track form this card
@enisn If your still open to suggestions, AutoCompleteView?
@LeoJHarris You can try this Pre-Release for AutoCompleteView and send me feedback to decide features for Release
@enisn AutoCompleteView or AutoCompleteEntry? I see two similar components
@enisn AutoCompleteView or AutoCompleteEntry? I see two similar components
AutoCompleteView does not have any visual effects. just simply invisible(if you set background you'll see :) ) view. AutoCompleteEntry is inherited from AdvancedEntry to use same features. If you'll make custom desing for AutoComplete, just use autocomplete view and put it in a shape which you want.