Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Controls on V3 #45

Open
enisn opened this issue Oct 10, 2018 · 12 comments
Open

New Controls on V3 #45

enisn opened this issue Oct 10, 2018 · 12 comments
Labels
discussion help wanted Extra attention is needed
Milestone

Comments

@enisn
Copy link
Owner

enisn commented Oct 10, 2018

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 enisn added the help wanted Extra attention is needed label Oct 10, 2018
@enisn enisn added this to the New Controls milestone Oct 10, 2018
@LeoJHarris
Copy link

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.

@enisn
Copy link
Owner Author

enisn commented Oct 11, 2018

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

@LeoJHarris
Copy link

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

@enisn
Copy link
Owner Author

enisn commented Oct 11, 2018

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

@lekgolo167
Copy link

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?

@amrkamal1993
Copy link

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

@LeoJHarris
Copy link

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

@LeoJHarris
Copy link

@enisn If your still open to suggestions, AutoCompleteView?

@enisn
Copy link
Owner Author

enisn commented Mar 2, 2019

@enisn If your still open to suggestions, AutoCompleteView?

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

@enisn
Copy link
Owner Author

enisn commented Mar 4, 2019

@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

@LeoJHarris
Copy link

@enisn AutoCompleteView or AutoCompleteEntry? I see two similar components

@enisn
Copy link
Owner Author

enisn commented Mar 5, 2019

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
discussion help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

4 participants