diff --git a/CrossPlatformModules.csproj b/CrossPlatformModules.csproj
index 7712d1427..34cb2a8d7 100644
--- a/CrossPlatformModules.csproj
+++ b/CrossPlatformModules.csproj
@@ -76,6 +76,9 @@
list-view.xml
+
+ repeater.xml
+
main-page.xml
@@ -597,6 +600,7 @@
+
diff --git a/apps/gallery-app/main-page.xml b/apps/gallery-app/main-page.xml
index 3240e80fa..8fdfa0701 100644
--- a/apps/gallery-app/main-page.xml
+++ b/apps/gallery-app/main-page.xml
@@ -32,6 +32,7 @@
+
diff --git a/apps/gallery-app/views/repeater.ts b/apps/gallery-app/views/repeater.ts
new file mode 100644
index 000000000..4d1212ea1
--- /dev/null
+++ b/apps/gallery-app/views/repeater.ts
@@ -0,0 +1,10 @@
+export function pageLoaded(args) {
+ var page = args.object;
+
+ var itemsArr = [];
+ for (var i = 1; i <= 64; i++) {
+ itemsArr.push({ title: "List item " + i });
+ }
+
+ page.bindingContext = { items: itemsArr };
+}
\ No newline at end of file
diff --git a/apps/gallery-app/views/repeater.xml b/apps/gallery-app/views/repeater.xml
new file mode 100644
index 000000000..5dbc7828e
--- /dev/null
+++ b/apps/gallery-app/views/repeater.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file