Skip to content

Latest commit

 

History

History
97 lines (60 loc) · 1.62 KB

File metadata and controls

97 lines (60 loc) · 1.62 KB
title ItemEventData
category Interfaces
titleTemplate API - NativeScript
breadcrumbs
name href
API Index
/api/
name href
Interfaces
/api/#summary-Interfaces
name
ItemEventData
layout api
seo
description
Event data containing information for the index and the view associated to a list view item.
<script setup lang="ts"> import { provide } from "vue"; import API_DATA from "./ItemEventData.data.json"; provide('API_DATA', API_DATA); </script>
interface ItemEventData extends EventData {
  android: any;
  index: number;
  ios: any;
  view: View;
}

Summary

Properties

<template #title>

android

<template #title>

index

<template #title>

ios

<template #title>

view