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

ListView separatorColor="transparent" don't work #2213

Open
lblase opened this issue Aug 6, 2020 · 4 comments
Open

ListView separatorColor="transparent" don't work #2213

lblase opened this issue Aug 6, 2020 · 4 comments

Comments

@lblase
Copy link

lblase commented Aug 6, 2020

Environment
✔ Component nativescript has 6.8.0 version and is up to date.
✔ Component tns-core-modules has 6.6.0-next-2020-05-08-112112-01 version and is up to date.
✔ Component tns-android has 6.5.3 version and is up to date.
✔ Component tns-ios has 6.5.2 version and is up to date.

Describe the bug
I have my ListView inside ScrollView using ng-template to render dynamic content.
I'm trying to remove the separatorColor with all the methods I know but no one works.
image

Expected behavior
I would like to remove the separator line between the elements in my ListView

Sample project

<ScrollView row="1" col="0">
            <ListView height="100%" [items]="menuItems" (itemLoading)="onItemLoading($event)" android:listSelector="@android:color/transparent" separatorColor="transparent">

                <ng-template nsTemplateKey="defaults" let-item="item">
                    <StackLayout orientation="vertical">
                        <GridLayout [id]="item.id" [class.-selected]="item.selected" columns="*" rows="auto, *" (tap)="onNavItemTap($event)">
                            <ImageCache col="0" row="0" styling="image" placeHolder="res://menu" errorHolder="res://menu" fallback="res://menu"
                                stretch="fill" width="50" height="50" [src]="item.icon"></ImageCache>
                            <Label [text]="item.label" col="0" row="1" class="text-center"></Label>
                        </GridLayout>
                    </StackLayout>
                </ng-template>

                <ng-template nsTemplateKey="webViews" let-item="item">
                    <StackLayout orientation="vertical">
                        <GridLayout [id]="item.id" [class.-selected]="item.selected" columns="*" rows="*" (tap)="onNavItemTap($event)">
                            <Label [text]="item.label" col="0" row="0"></Label>
                        </GridLayout>
                    </StackLayout>
                </ng-template>

            </ListView>
        </ScrollView>

Additional context
Thanks all for the support.

@lblase
Copy link
Author

lblase commented Aug 26, 2020

UP!

@LynX39
Copy link

LynX39 commented Aug 26, 2020

Please, do you have a news of solutions?
Thks.

@lblase
Copy link
Author

lblase commented Aug 27, 2020

UP!

@iamabs2001
Copy link

working fine...
Screenshot_20200930-101920

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants