using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace SharedGui.View { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class VersionNumberView : ContentView { public VersionNumberView() { InitializeComponent(); CurrentAppVersionNumber.Text = ShareeBike.Model.CurrentAppInfos.CurrentAppVersion; } } }