This question is locked. New answers and comments are not allowed.
Everything looks good on iOS, but on android it's like each listitem is taking up the entire page, and the swipe\left\right doesn't move the listitem at all, have a peek:
http://www.screencast.com/t/nluDzkvLh
I have tried on the pre-release 0.2.4, and the official latest version on npm (as of today)
I've also tried removing the gridlayout and just putting the title in there, no diff... also on 1.0.1 the swipe code doesnt work (maybe the API changed, gonna check now)
<Page xmlns="http://schemas.nativescript.org/tns.xsd" xmlns:lv="nativescript-telerik-ui/listview" xmlns:drawer="nativescript-telerik-ui/sidedrawer" loaded="onPageLoaded" navigatingTo="onNavigatingTo" actionBarHidden="true"><drawer:RadSideDrawer id="drawer"> <drawer:RadSideDrawer.mainContent> <GridLayout id="layout" rows="auto, auto, *"> <StackLayout row="0" class="custom-actionbar" orientation="horizontal"> <Label text="" class="materialdesign hamburger" tap="onToggleDrawer" /> <Label text="Essential Clinical Encounters" textWrap="false" class="pagetitle" /> </StackLayout> <SearchBar id="searchBar" row="1" hint="Search Encounters" text="{{ searchText }}" clear="onSearchClear" submit="onSearch" /> <lv:RadListView row="2" items="{{ items }}" itemTap="onItemTap" swipeCells="true" itemSwipeProgressEnded="onSwipeEnded" pullToRefresh="true" pullToRefreshInitiated="pullToRefreshInitiated"> <lv:RadListView.listViewLayout> <lv:ListViewLinearLayout scrollDirection="Vertical"/> </lv:RadListView.listViewLayout> <lv:RadListView.itemTemplate> <GridLayout columns="30, *" class="list-item"> <Label col="0" text="{{ StatusIcon }}" class="status tag materialdesign" /> <StackLayout col="1"> <Label text="{{ Name }}" textWrap="false" /> <StackLayout orientation="horizontal"> <Label text="{{ PatientTypeName }}" textWrap="false" class="patientType type" /> <Label text="{{ RoleName }}" textWrap="false" class="roleName type" /> </StackLayout> </StackLayout> </GridLayout> </lv:RadListView.itemTemplate> <lv:RadListView.itemSwipeTemplate> <GridLayout columns="auto, *, auto"> <Button col="0" style="background-color: #7fd3ab; color: white" text="Done"/> <Button col="2" style="background-color: #7fd3ab; color: white" text="Done"/> </GridLayout> </lv:RadListView.itemSwipeTemplate> </lv:RadListView> </GridLayout> </drawer:RadSideDrawer.mainContent> <drawer:RadSideDrawer.drawerContent> <StackLayout class="drawer-content"> <StackLayout class="header-content"> <GridLayout columns="*, 30" rows="auto"> <Label text="Status" class="align-left text" col="0" /> <Label text="" class="materialdesign align-right icon" col="1" tap="onToggleDrawer" /> </GridLayout> </StackLayout> <StackLayout class="drawer-menu-content"> <Label text="Required"/> <StackLayout class="seperator" /> <Label text="All"/> <StackLayout class="seperator" /> <Label text="Complete"/> <StackLayout class="seperator" /> <Label text="Incomplete"/> <StackLayout class="seperator" /> </StackLayout> </StackLayout> </drawer:RadSideDrawer.drawerContent> </drawer:RadSideDrawer></Page>