Xamarin.Forms.InputKit icon indicating copy to clipboard operation
Xamarin.Forms.InputKit copied to clipboard

New Controls on V3

Open enisn opened this issue 7 years ago • 12 comments
trafficstars

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?

enisn avatar Oct 10 '18 07:10 enisn

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

capture

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 avatar Oct 10 '18 19:10 LeoJHarris

@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 avatar Oct 11 '18 10:10 enisn

@enisn Okay your right I'd forgot Xamarin had a stepper

LeoJHarris avatar Oct 11 '18 18:10 LeoJHarris

@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.

enisn avatar Oct 11 '18 19:10 enisn

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?

lekgolo167 avatar Nov 24 '18 00:11 lekgolo167

Hi @enisn

You can also add customize tab which i can put counter on it like this image

another suggestion what about range slider ? like one in price range from to

amrkamal1993 avatar Dec 11 '18 10:12 amrkamal1993

@amrkamal1993 You can find a customize tab that already does that feature with counter https://github.com/xabre/xamarin-forms-tab-badge

LeoJHarris avatar Dec 11 '18 19:12 LeoJHarris

@enisn If your still open to suggestions, AutoCompleteView?

LeoJHarris avatar Feb 21 '19 20:02 LeoJHarris

@enisn If your still open to suggestions, AutoCompleteView?

AutoComplete feature planned for AdvancedEntry, you can track form this card

enisn avatar Mar 02 '19 14:03 enisn

@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 avatar Mar 04 '19 08:03 enisn

@enisn AutoCompleteView or AutoCompleteEntry? I see two similar components

LeoJHarris avatar Mar 05 '19 04:03 LeoJHarris

@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.

enisn avatar Mar 05 '19 06:03 enisn