FunctionalityTest.xaml.cs 476 Bytes
Newer Older
Mattia's avatar
Mattia committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
using System;
using System.Collections.Generic;
using SampleApp.ViewModels;
using Xamarin.Forms;

namespace SampleApp.Views
{
    public partial class FunctionalityTest : ContentPage
    {
        public FunctionalityTest(String Name, String Description)
        {
            InitializeComponent();
            this.BindingContext = this;
            NameToDisplay.Text = "API: " + Name;
            DescriptionToDisplay.Text = Description;
        }

        



    }
}